Title: [115772] trunk/Source/WebKit/chromium
Revision
115772
Author
[email protected]
Date
2012-05-01 17:41:34 -0700 (Tue, 01 May 2012)

Log Message

[Chromium] Additional instances of calling histogramCustomCounts directly
https://bugs.webkit.org/show_bug.cgi?id=85322

Reviewed by Kentaro Hara.

Part of a refactoring series. See tracking bug 82948.

* src/painting/PaintAggregator.cpp:
(WebKit::PaintAggregator::invalidateRect):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (115771 => 115772)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-05-02 00:39:31 UTC (rev 115771)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-05-02 00:41:34 UTC (rev 115772)
@@ -1,3 +1,15 @@
+2012-05-01  Mark Pilgrim  <[email protected]>
+
+        [Chromium] Additional instances of calling histogramCustomCounts directly
+        https://bugs.webkit.org/show_bug.cgi?id=85322
+
+        Reviewed by Kentaro Hara.
+
+        Part of a refactoring series. See tracking bug 82948.
+
+        * src/painting/PaintAggregator.cpp:
+        (WebKit::PaintAggregator::invalidateRect):
+
 2012-05-01  Min Qin  <[email protected]>
 
         use USE(NATIVE_FULLSCREEN_VIDEO) instead of ENABLE(NATIVE_FULLSCREEN_VIDEO)

Modified: trunk/Source/WebKit/chromium/src/painting/PaintAggregator.cpp (115771 => 115772)


--- trunk/Source/WebKit/chromium/src/painting/PaintAggregator.cpp	2012-05-02 00:39:31 UTC (rev 115771)
+++ trunk/Source/WebKit/chromium/src/painting/PaintAggregator.cpp	2012-05-02 00:41:34 UTC (rev 115772)
@@ -238,7 +238,7 @@
     // with all existing paints, which means that tracking the size of
     // paintRects at the time when popPendingUpdate() is called may mask
     // certain performance problems.
-    webKitPlatformSupport()->histogramCustomCounts("MPArch.RW_IntermediatePaintRectCount",
+    WebKit::Platform::current()->histogramCustomCounts("MPArch.RW_IntermediatePaintRectCount",
                                           m_update.paintRects.size(), 1, 100, 50);
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to