summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
ad19e64)
https://bugs.webkit.org/show_bug.cgi?id=116946
Reviewed by Andreas Kling.
Merge https://chromium.googlesource.com/chromium/blink/+/
70be7ddc41141ef6dec7795d37842c27dab2e194.
* dom/StyledElement.cpp:
(WebCore::PresentationAttributeCacheCleaner::PresentationAttributeCacheCleaner):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@150877
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-05-29 Ryosuke Niwa <rniwa@webkit.org>
+
+ PresentationAttributeCacheCleaner::m_hitCount is never initialized
+ https://bugs.webkit.org/show_bug.cgi?id=116946
+
+ Reviewed by Andreas Kling.
+
+ Merge https://chromium.googlesource.com/chromium/blink/+/70be7ddc41141ef6dec7795d37842c27dab2e194.
+
+ * dom/StyledElement.cpp:
+ (WebCore::PresentationAttributeCacheCleaner::PresentationAttributeCacheCleaner):
+
2013-05-29 Kent Tamura <tkent@chromium.org>
Remove ENABLE_INPUT_MULTIPLE_FIELDS_UI.
2013-05-29 Kent Tamura <tkent@chromium.org>
Remove ENABLE_INPUT_MULTIPLE_FIELDS_UI.
WTF_MAKE_NONCOPYABLE(PresentationAttributeCacheCleaner); WTF_MAKE_FAST_ALLOCATED;
public:
PresentationAttributeCacheCleaner()
WTF_MAKE_NONCOPYABLE(PresentationAttributeCacheCleaner); WTF_MAKE_FAST_ALLOCATED;
public:
PresentationAttributeCacheCleaner()
- : m_cleanTimer(this, &PresentationAttributeCacheCleaner::cleanCache)
+ : m_hitCount(0)
+ , m_cleanTimer(this, &PresentationAttributeCacheCleaner::cleanCache)