Title: [139591] trunk/Source/WebCore
Revision
139591
Author
commit-qu...@webkit.org
Date
2013-01-14 01:23:31 -0800 (Mon, 14 Jan 2013)

Log Message

Fix a typo error in the comments in PlatformContextSkia.h
https://bugs.webkit.org/show_bug.cgi?id=105612

Patch by Qiankun Miao <qiankun.m...@intel.com> on 2013-01-14
Reviewed by Stephen White.

"If false we're rendering to a GraphicsContext for a web page, if false
we're not (as is the case when rendering to a canvas object)." is
self-contradictory. The second "flase" in the comments should be
"true". If true, we're rendering to an ImageBuffer which has a canvas
object.

* platform/graphics/skia/PlatformContextSkia.h:
(PlatformContextSkia):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (139590 => 139591)


--- trunk/Source/WebCore/ChangeLog	2013-01-14 09:12:30 UTC (rev 139590)
+++ trunk/Source/WebCore/ChangeLog	2013-01-14 09:23:31 UTC (rev 139591)
@@ -1,3 +1,19 @@
+2013-01-14  Qiankun Miao  <qiankun.m...@intel.com>
+
+        Fix a typo error in the comments in PlatformContextSkia.h
+        https://bugs.webkit.org/show_bug.cgi?id=105612
+
+        Reviewed by Stephen White.
+
+        "If false we're rendering to a GraphicsContext for a web page, if false
+        we're not (as is the case when rendering to a canvas object)." is
+        self-contradictory. The second "flase" in the comments should be
+        "true". If true, we're rendering to an ImageBuffer which has a canvas
+        object.
+
+        * platform/graphics/skia/PlatformContextSkia.h:
+        (PlatformContextSkia):
+
 2013-01-14  Ilya Tikhonovsky  <loi...@chromium.org>
 
         Web Inspector: Native Memory Instrumentation: fix instrumentation for already instrumented classes 3/3

Modified: trunk/Source/WebCore/platform/graphics/skia/PlatformContextSkia.h (139590 => 139591)


--- trunk/Source/WebCore/platform/graphics/skia/PlatformContextSkia.h	2013-01-14 09:12:30 UTC (rev 139590)
+++ trunk/Source/WebCore/platform/graphics/skia/PlatformContextSkia.h	2013-01-14 09:23:31 UTC (rev 139591)
@@ -85,7 +85,7 @@
 
     SkDevice* createCompatibleDevice(const IntSize&, bool hasAlpha);
 
-    // If false we're rendering to a GraphicsContext for a web page, if false
+    // If false we're rendering to a GraphicsContext for a web page, if true
     // we're not (as is the case when rendering to a canvas object).
     // If this is true the contents have not been marked up with the magic
     // color and all text drawing needs to go to a layer so that the alpha is
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to