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

Unified Diff: ui/gfx/gl/gl_surface.h

Issue 8486016: Add OVERRIDE to gpu/ and gl/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « ui/gfx/gl/gl_context_stub.h ('k') | ui/gfx/gl/gl_surface_cgl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/gl/gl_surface.h
diff --git a/ui/gfx/gl/gl_surface.h b/ui/gfx/gl/gl_surface.h
index 150182e8ed1fd29fd007e98fa5b7ede90f9e6dc4..95a346687335bf7fb2b14785c8981f3552c83f55 100644
--- a/ui/gfx/gl/gl_surface.h
+++ b/ui/gfx/gl/gl_surface.h
@@ -108,19 +108,19 @@ class GL_EXPORT GLSurfaceAdapter : public GLSurface {
explicit GLSurfaceAdapter(GLSurface* surface);
virtual ~GLSurfaceAdapter();
- virtual bool Initialize();
- virtual void Destroy();
- virtual bool Resize(const gfx::Size& size);
- virtual bool IsOffscreen();
- virtual bool SwapBuffers();
- virtual gfx::Size GetSize();
- virtual void* GetHandle();
- virtual unsigned int GetBackingFrameBufferObject();
- virtual bool OnMakeCurrent(GLContext* context);
- virtual void* GetShareHandle();
- virtual void* GetDisplay();
- virtual void* GetConfig();
- virtual unsigned GetFormat();
+ virtual bool Initialize() OVERRIDE;
+ virtual void Destroy() OVERRIDE;
+ virtual bool Resize(const gfx::Size& size) OVERRIDE;
+ virtual bool IsOffscreen() OVERRIDE;
+ virtual bool SwapBuffers() OVERRIDE;
+ virtual gfx::Size GetSize() OVERRIDE;
+ virtual void* GetHandle() OVERRIDE;
+ virtual unsigned int GetBackingFrameBufferObject() OVERRIDE;
+ virtual bool OnMakeCurrent(GLContext* context) OVERRIDE;
+ virtual void* GetShareHandle() OVERRIDE;
+ virtual void* GetDisplay() OVERRIDE;
+ virtual void* GetConfig() OVERRIDE;
+ virtual unsigned GetFormat() OVERRIDE;
GLSurface* surface() const { return surface_.get(); }
« no previous file with comments | « ui/gfx/gl/gl_context_stub.h ('k') | ui/gfx/gl/gl_surface_cgl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698