Title: [95344] trunk/Source/WebCore
Revision
95344
Author
commit-qu...@webkit.org
Date
2011-09-16 17:50:28 -0700 (Fri, 16 Sep 2011)

Log Message

Remove default NULL argument in LayerChromium::create().
https://bugs.webkit.org/show_bug.cgi?id=68211

Patch by Shawn Singh <shawnsi...@chromium.org> on 2011-09-16
Reviewed by James Robinson.

Code cleanup related to creating unit testing.

* platform/graphics/chromium/LayerChromium.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (95343 => 95344)


--- trunk/Source/WebCore/ChangeLog	2011-09-17 00:45:50 UTC (rev 95343)
+++ trunk/Source/WebCore/ChangeLog	2011-09-17 00:50:28 UTC (rev 95344)
@@ -1,3 +1,14 @@
+2011-09-16  Shawn Singh  <shawnsi...@chromium.org>
+
+        Remove default NULL argument in LayerChromium::create().
+        https://bugs.webkit.org/show_bug.cgi?id=68211
+
+        Reviewed by James Robinson.
+
+        Code cleanup related to creating unit testing.
+
+        * platform/graphics/chromium/LayerChromium.h:
+
 2011-09-16  Adrienne Walker  <e...@google.com>
 
         [chromium] Move quad drawing code from LayerChromium to LayerRendererChromium

Modified: trunk/Source/WebCore/platform/graphics/chromium/LayerChromium.h (95343 => 95344)


--- trunk/Source/WebCore/platform/graphics/chromium/LayerChromium.h	2011-09-17 00:45:50 UTC (rev 95343)
+++ trunk/Source/WebCore/platform/graphics/chromium/LayerChromium.h	2011-09-17 00:50:28 UTC (rev 95344)
@@ -69,7 +69,7 @@
 class LayerChromium : public RefCounted<LayerChromium> {
     friend class LayerTilerChromium;
 public:
-    static PassRefPtr<LayerChromium> create(CCLayerDelegate* = 0);
+    static PassRefPtr<LayerChromium> create(CCLayerDelegate*);
 
     virtual ~LayerChromium();
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to