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

Unified Diff: content/renderer/pepper/host_var_tracker.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (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 | « content/renderer/pepper/host_resource_var.h ('k') | content/renderer/pepper/host_var_tracker_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/host_var_tracker.h
diff --git a/content/renderer/pepper/host_var_tracker.h b/content/renderer/pepper/host_var_tracker.h
index a5518c8033805904a182d9001353a0540ee654ea..56f471033637b7d69c83f8de8915bb28245485a8 100644
--- a/content/renderer/pepper/host_var_tracker.h
+++ b/content/renderer/pepper/host_var_tracker.h
@@ -50,25 +50,25 @@ class HostVarTracker : public ppapi::VarTracker {
PP_Instance instance,
const IPC::Message& creation_message,
int pending_renderer_id,
- int pending_browser_id) OVERRIDE;
- virtual ppapi::ResourceVar* MakeResourceVar(PP_Resource pp_resource) OVERRIDE;
- virtual void DidDeleteInstance(PP_Instance pp_instance) OVERRIDE;
+ int pending_browser_id) override;
+ virtual ppapi::ResourceVar* MakeResourceVar(PP_Resource pp_resource) override;
+ virtual void DidDeleteInstance(PP_Instance pp_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;
private:
// VarTracker private implementation.
virtual ppapi::ArrayBufferVar* CreateArrayBuffer(uint32 size_in_bytes)
- OVERRIDE;
+ override;
virtual ppapi::ArrayBufferVar* CreateShmArrayBuffer(
uint32 size_in_bytes,
- base::SharedMemoryHandle handle) OVERRIDE;
+ base::SharedMemoryHandle handle) override;
// Clear the reference count of the given object and remove it from
// live_vars_.
« no previous file with comments | « content/renderer/pepper/host_resource_var.h ('k') | content/renderer/pepper/host_var_tracker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698