| Index: cc/test/test_context_provider.h
|
| diff --git a/cc/test/test_context_provider.h b/cc/test/test_context_provider.h
|
| index 75c7663351681aa690cd8d0dc906589e4b188df4..cf0292d2cb5b14952877ea7760e55ba8158448aa 100644
|
| --- a/cc/test/test_context_provider.h
|
| +++ b/cc/test/test_context_provider.h
|
| @@ -27,18 +27,18 @@ class TestContextProvider : public ContextProvider {
|
| static scoped_refptr<TestContextProvider> Create(
|
| scoped_ptr<TestWebGraphicsContext3D> context);
|
|
|
| - virtual bool BindToCurrentThread() OVERRIDE;
|
| - virtual Capabilities ContextCapabilities() OVERRIDE;
|
| - virtual gpu::gles2::GLES2Interface* ContextGL() OVERRIDE;
|
| - virtual gpu::ContextSupport* ContextSupport() OVERRIDE;
|
| - virtual class GrContext* GrContext() OVERRIDE;
|
| - virtual bool IsContextLost() OVERRIDE;
|
| - virtual void VerifyContexts() OVERRIDE;
|
| - virtual void DeleteCachedResources() OVERRIDE;
|
| - virtual bool DestroyedOnMainThread() OVERRIDE;
|
| - virtual void SetLostContextCallback(const LostContextCallback& cb) OVERRIDE;
|
| + virtual bool BindToCurrentThread() override;
|
| + virtual Capabilities ContextCapabilities() override;
|
| + virtual gpu::gles2::GLES2Interface* ContextGL() override;
|
| + virtual gpu::ContextSupport* ContextSupport() override;
|
| + virtual class GrContext* GrContext() override;
|
| + virtual bool IsContextLost() override;
|
| + virtual void VerifyContexts() override;
|
| + virtual void DeleteCachedResources() override;
|
| + virtual bool DestroyedOnMainThread() override;
|
| + virtual void SetLostContextCallback(const LostContextCallback& cb) override;
|
| virtual void SetMemoryPolicyChangedCallback(
|
| - const MemoryPolicyChangedCallback& cb) OVERRIDE;
|
| + const MemoryPolicyChangedCallback& cb) override;
|
|
|
| TestWebGraphicsContext3D* TestContext3d();
|
|
|
|
|