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

Unified Diff: ui/gfx/gl/gl_context_stub.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_osmesa.h ('k') | ui/gfx/gl/gl_surface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/gl/gl_context_stub.h
diff --git a/ui/gfx/gl/gl_context_stub.h b/ui/gfx/gl/gl_context_stub.h
index da391b905e463aa7ac869de7199b451d50bfeaca..4b3d849c3bdb1d7e9278f5af1703eea48ef53cf9 100644
--- a/ui/gfx/gl/gl_context_stub.h
+++ b/ui/gfx/gl/gl_context_stub.h
@@ -18,14 +18,14 @@ class GL_EXPORT GLContextStub : public GLContext {
// Implement GLContext.
virtual bool Initialize(
- GLSurface* compatible_surface, GpuPreference gpu_preference);
- virtual void Destroy();
- virtual bool MakeCurrent(GLSurface* surface);
- virtual void ReleaseCurrent(GLSurface* surface);
- virtual bool IsCurrent(GLSurface* surface);
- virtual void* GetHandle();
- virtual void SetSwapInterval(int interval);
- virtual std::string GetExtensions();
+ GLSurface* compatible_surface, GpuPreference gpu_preference) OVERRIDE;
+ virtual void Destroy() OVERRIDE;
+ virtual bool MakeCurrent(GLSurface* surface) OVERRIDE;
+ virtual void ReleaseCurrent(GLSurface* surface) OVERRIDE;
+ virtual bool IsCurrent(GLSurface* surface) OVERRIDE;
+ virtual void* GetHandle() OVERRIDE;
+ virtual void SetSwapInterval(int interval) OVERRIDE;
+ virtual std::string GetExtensions() OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(GLContextStub);
« no previous file with comments | « ui/gfx/gl/gl_context_osmesa.h ('k') | ui/gfx/gl/gl_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698