Title: [124606] trunk/Source/WebCore
- Revision
- 124606
- Author
- [email protected]
- Date
- 2012-08-03 07:07:44 -0700 (Fri, 03 Aug 2012)
Log Message
Unreviewed. Fixed WinCE compilation after r124589.
* css/PropertySetCSSStyleDeclaration.cpp:
(WebCore::StyleRuleCSSStyleDeclaration::reportMemoryUsage):
(WebCore::InlineCSSStyleDeclaration::reportMemoryUsage):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (124605 => 124606)
--- trunk/Source/WebCore/ChangeLog 2012-08-03 13:53:37 UTC (rev 124605)
+++ trunk/Source/WebCore/ChangeLog 2012-08-03 14:07:44 UTC (rev 124606)
@@ -1,3 +1,11 @@
+2012-08-03 Yury Semikhatsky <[email protected]>
+
+ Unreviewed. Fixed WinCE compilation after r124589.
+
+ * css/PropertySetCSSStyleDeclaration.cpp:
+ (WebCore::StyleRuleCSSStyleDeclaration::reportMemoryUsage):
+ (WebCore::InlineCSSStyleDeclaration::reportMemoryUsage):
+
2012-08-03 Keishi Hattori <[email protected]>
Add keyboard support for color suggestion popup
Modified: trunk/Source/WebCore/css/PropertySetCSSStyleDeclaration.cpp (124605 => 124606)
--- trunk/Source/WebCore/css/PropertySetCSSStyleDeclaration.cpp 2012-08-03 13:53:37 UTC (rev 124605)
+++ trunk/Source/WebCore/css/PropertySetCSSStyleDeclaration.cpp 2012-08-03 14:07:44 UTC (rev 124606)
@@ -391,14 +391,14 @@
void StyleRuleCSSStyleDeclaration::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
{
MemoryClassInfo<StyleRuleCSSStyleDeclaration> info(memoryObjectInfo, this, MemoryInstrumentation::CSS);
- info.visitBaseClass(this);
+ info.visitBaseClass<PropertySetCSSStyleDeclaration>(this);
info.addInstrumentedMember(m_parentRule);
}
void InlineCSSStyleDeclaration::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
{
MemoryClassInfo<InlineCSSStyleDeclaration> info(memoryObjectInfo, this, MemoryInstrumentation::CSS);
- info.visitBaseClass(this);
+ info.visitBaseClass<PropertySetCSSStyleDeclaration>(this);
info.addInstrumentedMember(m_parentElement);
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes