Title: [113753] trunk/Source/WebCore
Revision
113753
Author
macpher...@chromium.org
Date
2012-04-10 12:36:14 -0700 (Tue, 10 Apr 2012)

Log Message

Pass PropertyHandler by reference in CSSStyleApplyProperty.h.
https://bugs.webkit.org/show_bug.cgi?id=83551

Reviewed by Kentaro Hara.

No new tests / cleanup only.

* css/CSSStyleApplyProperty.h:
(WebCore::CSSStyleApplyProperty::setPropertyHandler):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (113752 => 113753)


--- trunk/Source/WebCore/ChangeLog	2012-04-10 19:31:04 UTC (rev 113752)
+++ trunk/Source/WebCore/ChangeLog	2012-04-10 19:36:14 UTC (rev 113753)
@@ -1,5 +1,17 @@
 2012-04-10  Luke Macpherson  <macpher...@chromium.org>
 
+        Pass PropertyHandler by reference in CSSStyleApplyProperty.h.
+        https://bugs.webkit.org/show_bug.cgi?id=83551
+
+        Reviewed by Kentaro Hara.
+
+        No new tests / cleanup only.
+
+        * css/CSSStyleApplyProperty.h:
+        (WebCore::CSSStyleApplyProperty::setPropertyHandler):
+
+2012-04-10  Luke Macpherson  <macpher...@chromium.org>
+
         Pass FontDescription as const reference instead of by value in CSSStyleSelector.h.
         https://bugs.webkit.org/show_bug.cgi?id=83548
 

Modified: trunk/Source/WebCore/css/CSSStyleApplyProperty.h (113752 => 113753)


--- trunk/Source/WebCore/css/CSSStyleApplyProperty.h	2012-04-10 19:31:04 UTC (rev 113752)
+++ trunk/Source/WebCore/css/CSSStyleApplyProperty.h	2012-04-10 19:36:14 UTC (rev 113753)
@@ -78,7 +78,7 @@
         return i >= 0 && i < numCSSProperties;
     }
 
-    void setPropertyHandler(CSSPropertyID property, PropertyHandler handler)
+    void setPropertyHandler(CSSPropertyID property, const PropertyHandler& handler)
     {
         ASSERT(valid(property));
         ASSERT(!propertyHandler(property).isValid());
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to