Title: [121403] trunk/Source/WebCore
Revision
121403
Author
[email protected]
Date
2012-06-27 21:49:53 -0700 (Wed, 27 Jun 2012)

Log Message

Add OVERRIDE to functions in UnthrottledTextureUploader class
https://bugs.webkit.org/show_bug.cgi?id=90130

Patch by Lu Guanqun <[email protected]> on 2012-06-27
Reviewed by James Robinson.

No new tests required.

* platform/graphics/chromium/LayerRendererChromium.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121402 => 121403)


--- trunk/Source/WebCore/ChangeLog	2012-06-28 04:08:58 UTC (rev 121402)
+++ trunk/Source/WebCore/ChangeLog	2012-06-28 04:49:53 UTC (rev 121403)
@@ -1,3 +1,14 @@
+2012-06-27  Lu Guanqun  <[email protected]>
+
+        Add OVERRIDE to functions in UnthrottledTextureUploader class
+        https://bugs.webkit.org/show_bug.cgi?id=90130
+
+        Reviewed by James Robinson.
+
+        No new tests required.
+
+        * platform/graphics/chromium/LayerRendererChromium.cpp:
+
 2012-06-27  Pablo Flouret  <[email protected]>
 
         pattern="" should only accept the empty string

Modified: trunk/Source/WebCore/platform/graphics/chromium/LayerRendererChromium.cpp (121402 => 121403)


--- trunk/Source/WebCore/platform/graphics/chromium/LayerRendererChromium.cpp	2012-06-28 04:08:58 UTC (rev 121402)
+++ trunk/Source/WebCore/platform/graphics/chromium/LayerRendererChromium.cpp	2012-06-28 04:49:53 UTC (rev 121403)
@@ -132,10 +132,10 @@
     }
     virtual ~UnthrottledTextureUploader() { }
 
-    virtual bool isBusy() { return false; }
-    virtual void beginUploads() { }
-    virtual void endUploads() { }
-    virtual void uploadTexture(CCGraphicsContext* context, LayerTextureUpdater::Texture* texture, TextureAllocator* allocator, const IntRect sourceRect, const IntRect destRect) { texture->updateRect(context, allocator, sourceRect, destRect); }
+    virtual bool isBusy() OVERRIDE { return false; }
+    virtual void beginUploads() OVERRIDE { }
+    virtual void endUploads() OVERRIDE { }
+    virtual void uploadTexture(CCGraphicsContext* context, LayerTextureUpdater::Texture* texture, TextureAllocator* allocator, const IntRect sourceRect, const IntRect destRect) OVERRIDE { texture->updateRect(context, allocator, sourceRect, destRect); }
 
 protected:
     UnthrottledTextureUploader() { }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to