Index: Source/WebKit/chromium/tests/CCTiledLayerTestCommon.h |
=================================================================== |
--- Source/WebKit/chromium/tests/CCTiledLayerTestCommon.h (revision 122257) |
+++ Source/WebKit/chromium/tests/CCTiledLayerTestCommon.h (working copy) |
@@ -150,8 +150,9 @@ |
class FakeTextureAllocator : public WebCore::TextureAllocator { |
public: |
- virtual unsigned createTexture(const WebCore::IntSize&, GC3Denum) { return 1; } |
- virtual void deleteTexture(unsigned, const WebCore::IntSize&, GC3Denum) { } |
+ virtual unsigned createTexture(const WebCore::IntSize&, GC3Denum) OVERRIDE { return 1; } |
+ virtual void deleteTexture(unsigned, const WebCore::IntSize&, GC3Denum) OVERRIDE { } |
+ virtual void deleteAllTextures() OVERRIDE { } |
}; |
class FakeTextureCopier : public WebCore::TextureCopier { |