Remove default NULL argument in LayerChromium::create().
authorcommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Sat, 17 Sep 2011 00:50:28 +0000 (00:50 +0000)
committercommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Sat, 17 Sep 2011 00:50:28 +0000 (00:50 +0000)
https://bugs.webkit.org/show_bug.cgi?id=68211

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

Code cleanup related to creating unit testing.

* platform/graphics/chromium/LayerChromium.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@95344 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebCore/ChangeLog
Source/WebCore/platform/graphics/chromium/LayerChromium.h

index b6def90..9746227 100644 (file)
@@ -1,3 +1,14 @@
+2011-09-16  Shawn Singh  <shawnsingh@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  <enne@google.com>
 
         [chromium] Move quad drawing code from LayerChromium to LayerRendererChromium
index 567030e..9f86bfa 100644 (file)
@@ -69,7 +69,7 @@ public:
 class LayerChromium : public RefCounted<LayerChromium> {
     friend class LayerTilerChromium;
 public:
-    static PassRefPtr<LayerChromium> create(CCLayerDelegate* = 0);
+    static PassRefPtr<LayerChromium> create(CCLayerDelegate*);
 
     virtual ~LayerChromium();