| 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 4b3d849c3bdb1d7e9278f5af1703eea48ef53cf9..acb8d5cf2c3dca01e54a13a3f54170871afa92a2 100644
|
| --- a/ui/gfx/gl/gl_context_stub.h
|
| +++ b/ui/gfx/gl/gl_context_stub.h
|
| @@ -14,11 +14,10 @@ namespace gfx {
|
| class GL_EXPORT GLContextStub : public GLContext {
|
| public:
|
| GLContextStub();
|
| - virtual ~GLContextStub();
|
|
|
| // Implement GLContext.
|
| - virtual bool Initialize(
|
| - GLSurface* compatible_surface, GpuPreference gpu_preference) OVERRIDE;
|
| + virtual bool Initialize(GLSurface* compatible_surface,
|
| + GpuPreference gpu_preference) OVERRIDE;
|
| virtual void Destroy() OVERRIDE;
|
| virtual bool MakeCurrent(GLSurface* surface) OVERRIDE;
|
| virtual void ReleaseCurrent(GLSurface* surface) OVERRIDE;
|
| @@ -27,6 +26,9 @@ class GL_EXPORT GLContextStub : public GLContext {
|
| virtual void SetSwapInterval(int interval) OVERRIDE;
|
| virtual std::string GetExtensions() OVERRIDE;
|
|
|
| + protected:
|
| + virtual ~GLContextStub();
|
| +
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(GLContextStub);
|
| };
|
|
|