summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authoranujk.sharma <anujk.sharma@samsung.com>2014-10-07 00:31:15 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-07 07:32:04 +0000
commitc4fa57ece12dbe14c9f59c55ad6cadcfb645ff41 (patch)
tree43e8aa626a08c07123a0cbfc35eaed78d19accda /webkit
parent3253b57271e643e4e0524b94fa278d4582a0ccca (diff)
downloadchromium_src-c4fa57ece12dbe14c9f59c55ad6cadcfb645ff41.zip
chromium_src-c4fa57ece12dbe14c9f59c55ad6cadcfb645ff41.tar.gz
chromium_src-c4fa57ece12dbe14c9f59c55ad6cadcfb645ff41.tar.bz2
Replacing the OVERRIDE with override in /src/webkit
This step is a giant search and replace for OVERRIDE with their lowercase versions. BUG=417463 Review URL: https://codereview.chromium.org/636443003 Cr-Commit-Position: refs/heads/master@{#298417}
Diffstat (limited to 'webkit')
-rw-r--r--webkit/common/gpu/context_provider_in_process.h26
-rw-r--r--webkit/common/gpu/webgraphicscontext3d_impl.cc2
2 files changed, 14 insertions, 14 deletions
diff --git a/webkit/common/gpu/context_provider_in_process.h b/webkit/common/gpu/context_provider_in_process.h
index 3df327b..a4b732e 100644
--- a/webkit/common/gpu/context_provider_in_process.h
+++ b/webkit/common/gpu/context_provider_in_process.h
@@ -30,22 +30,22 @@ class WEBKIT_GPU_EXPORT ContextProviderInProcess
static scoped_refptr<ContextProviderInProcess> CreateOffscreen(
bool lose_context_when_out_of_memory);
- virtual blink::WebGraphicsContext3D* WebContext3D() 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 blink::WebGraphicsContext3D* WebContext3D() 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& lost_context_callback) OVERRIDE;
+ const LostContextCallback& lost_context_callback) override;
virtual void SetMemoryPolicyChangedCallback(
const MemoryPolicyChangedCallback& memory_policy_changed_callback)
- OVERRIDE;
+ override;
protected:
ContextProviderInProcess(
diff --git a/webkit/common/gpu/webgraphicscontext3d_impl.cc b/webkit/common/gpu/webgraphicscontext3d_impl.cc
index 9e1606a..9f0a351a 100644
--- a/webkit/common/gpu/webgraphicscontext3d_impl.cc
+++ b/webkit/common/gpu/webgraphicscontext3d_impl.cc
@@ -42,7 +42,7 @@ class WebGraphicsContext3DErrorMessageCallback
: graphics_context_(context) {
}
- virtual void OnErrorMessage(const char* msg, int id) OVERRIDE;
+ virtual void OnErrorMessage(const char* msg, int id) override;
private:
WebGraphicsContext3DImpl* graphics_context_;