Title: [113384] trunk/Source/WebCore
Revision
113384
Author
commit-qu...@webkit.org
Date
2012-04-05 15:01:58 -0700 (Thu, 05 Apr 2012)

Log Message

[Chromium] Correct misleading trace event names in Canvas2DLayerChromium
https://bugs.webkit.org/show_bug.cgi?id=83310

Patch by Justin Novosad <ju...@chromium.org> on 2012-04-05
Reviewed by Adrienne Walker.

* platform/graphics/chromium/Canvas2DLayerChromium.cpp:
(WebCore::Canvas2DLayerChromium::paintContentsIfDirty):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (113383 => 113384)


--- trunk/Source/WebCore/ChangeLog	2012-04-05 21:51:26 UTC (rev 113383)
+++ trunk/Source/WebCore/ChangeLog	2012-04-05 22:01:58 UTC (rev 113384)
@@ -1,3 +1,13 @@
+2012-04-05  Justin Novosad  <ju...@chromium.org>
+
+        [Chromium] Correct misleading trace event names in Canvas2DLayerChromium
+        https://bugs.webkit.org/show_bug.cgi?id=83310
+
+        Reviewed by Adrienne Walker.
+
+        * platform/graphics/chromium/Canvas2DLayerChromium.cpp:
+        (WebCore::Canvas2DLayerChromium::paintContentsIfDirty):
+
 2012-04-05  Dean Jackson  <d...@apple.com>
 
         [mac] requestAnimationFrame sometimes stuck when page loads in a background tab

Modified: trunk/Source/WebCore/platform/graphics/chromium/Canvas2DLayerChromium.cpp (113383 => 113384)


--- trunk/Source/WebCore/platform/graphics/chromium/Canvas2DLayerChromium.cpp	2012-04-05 21:51:26 UTC (rev 113383)
+++ trunk/Source/WebCore/platform/graphics/chromium/Canvas2DLayerChromium.cpp	2012-04-05 22:01:58 UTC (rev 113384)
@@ -121,11 +121,11 @@
         return;
 
     if (m_canvas) {
-        TRACE_EVENT("SkDeferredCanvas::flush", m_canvas, 0);
+        TRACE_EVENT("SkCanvas::flush", m_canvas, 0);
         m_canvas->flush();
     }
 
-    TRACE_EVENT("GrContext::flush", m_context, 0);
+    TRACE_EVENT("GraphicsContext3D::flush", m_context, 0);
     m_context->flush();
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to