Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2022)

Unified Diff: Source/platform/graphics/gpu/AcceleratedImageBufferSurface.h

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/graphics/filters/SpotLightSource.h ('k') | Source/platform/graphics/gpu/DrawingBuffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/gpu/AcceleratedImageBufferSurface.h
diff --git a/Source/platform/graphics/gpu/AcceleratedImageBufferSurface.h b/Source/platform/graphics/gpu/AcceleratedImageBufferSurface.h
index 747d2f32a929f69241bab3f6d5af4b581d3f1940..4d402f385360ed4e63f5a51971f50b2b2da2fee3 100644
--- a/Source/platform/graphics/gpu/AcceleratedImageBufferSurface.h
+++ b/Source/platform/graphics/gpu/AcceleratedImageBufferSurface.h
@@ -44,10 +44,10 @@ public:
AcceleratedImageBufferSurface(const IntSize&, OpacityMode = NonOpaque, int msaaSampleCount = 0);
virtual ~AcceleratedImageBufferSurface() { }
- virtual SkCanvas* canvas() const OVERRIDE { return m_surface ? m_surface->getCanvas() : 0; }
- virtual bool isValid() const OVERRIDE { return m_surface; }
- virtual bool isAccelerated() const OVERRIDE { return true; }
- virtual Platform3DObject getBackingTexture() const OVERRIDE;
+ virtual SkCanvas* canvas() const override { return m_surface ? m_surface->getCanvas() : 0; }
+ virtual bool isValid() const override { return m_surface; }
+ virtual bool isAccelerated() const override { return true; }
+ virtual Platform3DObject getBackingTexture() const override;
private:
OwnPtr<SkSurface> m_surface;
« no previous file with comments | « Source/platform/graphics/filters/SpotLightSource.h ('k') | Source/platform/graphics/gpu/DrawingBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698