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

Unified Diff: webkit/common/gpu/context_provider_in_process.h

Issue 825523002: Standardize usage of virtual/override/final specifiers in webkit/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « no previous file | webkit/common/gpu/context_provider_web_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/gpu/context_provider_in_process.h
diff --git a/webkit/common/gpu/context_provider_in_process.h b/webkit/common/gpu/context_provider_in_process.h
index a4b732efe5899d9ec09a00a66a5fe76ed5a948c0..28673090e6f65142ed32f4c63237ec7c2903e7f7 100644
--- a/webkit/common/gpu/context_provider_in_process.h
+++ b/webkit/common/gpu/context_provider_in_process.h
@@ -30,20 +30,20 @@ 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 void SetLostContextCallback(
+ blink::WebGraphicsContext3D* WebContext3D() override;
+
+ bool BindToCurrentThread() override;
+ Capabilities ContextCapabilities() override;
+ ::gpu::gles2::GLES2Interface* ContextGL() override;
+ ::gpu::ContextSupport* ContextSupport() override;
+ class GrContext* GrContext() override;
+ bool IsContextLost() override;
+ void VerifyContexts() override;
+ void DeleteCachedResources() override;
+ bool DestroyedOnMainThread() override;
+ void SetLostContextCallback(
const LostContextCallback& lost_context_callback) override;
- virtual void SetMemoryPolicyChangedCallback(
+ void SetMemoryPolicyChangedCallback(
const MemoryPolicyChangedCallback& memory_policy_changed_callback)
override;
@@ -51,7 +51,7 @@ class WEBKIT_GPU_EXPORT ContextProviderInProcess
ContextProviderInProcess(
scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d,
const std::string& debug_name);
- virtual ~ContextProviderInProcess();
+ ~ContextProviderInProcess() override;
void OnLostContext();
« no previous file with comments | « no previous file | webkit/common/gpu/context_provider_web_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698