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

Unified Diff: ppapi/proxy/plugin_var_tracker.h

Issue 630883002: replace OVERRIDE and FINAL with override and final in ppapi/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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 | « ppapi/proxy/plugin_resource_var.h ('k') | ppapi/proxy/ppapi_command_buffer_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/plugin_var_tracker.h
diff --git a/ppapi/proxy/plugin_var_tracker.h b/ppapi/proxy/plugin_var_tracker.h
index 03a9e5e412b5738952eb5184d76767927986543b..24be5a2012b065d1631570413dbb1ca65a93cc8e 100644
--- a/ppapi/proxy/plugin_var_tracker.h
+++ b/ppapi/proxy/plugin_var_tracker.h
@@ -63,16 +63,16 @@ class PPAPI_PROXY_EXPORT PluginVarTracker : public VarTracker {
PP_Instance instance,
const IPC::Message& creation_message,
int pending_renderer_id,
- int pending_browser_id) OVERRIDE;
- virtual ResourceVar* MakeResourceVar(PP_Resource pp_resource) OVERRIDE;
- virtual void DidDeleteInstance(PP_Instance instance) OVERRIDE;
+ int pending_browser_id) override;
+ virtual ResourceVar* MakeResourceVar(PP_Resource pp_resource) override;
+ virtual void DidDeleteInstance(PP_Instance instance) override;
virtual int TrackSharedMemoryHandle(PP_Instance instance,
base::SharedMemoryHandle file,
- uint32 size_in_bytes) OVERRIDE;
+ uint32 size_in_bytes) override;
virtual bool StopTrackingSharedMemoryHandle(int id,
PP_Instance instance,
base::SharedMemoryHandle* handle,
- uint32* size_in_bytes) OVERRIDE;
+ uint32* size_in_bytes) override;
// Notification that a plugin-implemented object (PPP_Class) was created by
// the plugin or deallocated by WebKit over IPC.
@@ -97,14 +97,14 @@ class PPAPI_PROXY_EXPORT PluginVarTracker : public VarTracker {
private:
// VarTracker protected overrides.
- virtual int32 AddVarInternal(Var* var, AddVarRefMode mode) OVERRIDE;
- virtual void TrackedObjectGettingOneRef(VarMap::const_iterator iter) OVERRIDE;
- virtual void ObjectGettingZeroRef(VarMap::iterator iter) OVERRIDE;
- virtual bool DeleteObjectInfoIfNecessary(VarMap::iterator iter) OVERRIDE;
- virtual ArrayBufferVar* CreateArrayBuffer(uint32 size_in_bytes) OVERRIDE;
+ virtual int32 AddVarInternal(Var* var, AddVarRefMode mode) override;
+ virtual void TrackedObjectGettingOneRef(VarMap::const_iterator iter) override;
+ virtual void ObjectGettingZeroRef(VarMap::iterator iter) override;
+ virtual bool DeleteObjectInfoIfNecessary(VarMap::iterator iter) override;
+ virtual ArrayBufferVar* CreateArrayBuffer(uint32 size_in_bytes) override;
virtual ArrayBufferVar* CreateShmArrayBuffer(
uint32 size_in_bytes,
- base::SharedMemoryHandle handle) OVERRIDE;
+ base::SharedMemoryHandle handle) override;
private:
friend struct DefaultSingletonTraits<PluginVarTracker>;
« no previous file with comments | « ppapi/proxy/plugin_resource_var.h ('k') | ppapi/proxy/ppapi_command_buffer_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698