Title: [135393] trunk/Source/WebCore
Revision
135393
Author
fmal...@chromium.org
Date
2012-11-21 06:03:58 -0800 (Wed, 21 Nov 2012)

Log Message

[Chromium] Unreviewed Mac build fix after http://trac.webkit.org/changeset/135390.

* platform/graphics/skia/GraphicsContextSkia.cpp:
(WebCore::drawInnerPath):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (135392 => 135393)


--- trunk/Source/WebCore/ChangeLog	2012-11-21 13:53:23 UTC (rev 135392)
+++ trunk/Source/WebCore/ChangeLog	2012-11-21 14:03:58 UTC (rev 135393)
@@ -1,5 +1,12 @@
 2012-11-21  Florin Malita  <fmal...@chromium.org>
 
+        [Chromium] Unreviewed Mac build fix after http://trac.webkit.org/changeset/135390.
+
+        * platform/graphics/skia/GraphicsContextSkia.cpp:
+        (WebCore::drawInnerPath):
+
+2012-11-21  Florin Malita  <fmal...@chromium.org>
+
         [Skia] Encapsulate access to PlatformContextSkia's SkCanvas
         https://bugs.webkit.org/show_bug.cgi?id=102694
 

Modified: trunk/Source/WebCore/platform/graphics/skia/GraphicsContextSkia.cpp (135392 => 135393)


--- trunk/Source/WebCore/platform/graphics/skia/GraphicsContextSkia.cpp	2012-11-21 13:53:23 UTC (rev 135392)
+++ trunk/Source/WebCore/platform/graphics/skia/GraphicsContextSkia.cpp	2012-11-21 14:03:58 UTC (rev 135393)
@@ -493,8 +493,7 @@
 #if PLATFORM(CHROMIUM) && OS(DARWIN)
     paint.setAlpha(128);
     paint.setStrokeWidth(width * 0.5f);
-    context->canvas()->drawPath(path, paint);
-    context->didDrawPath(path, paint);
+    context->drawPath(path, paint);
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to