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

Unified Diff: content/renderer/pepper/host_globals.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_array_buffer_var.h ('k') | content/renderer/pepper/host_resource_var.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/host_globals.h
diff --git a/content/renderer/pepper/host_globals.h b/content/renderer/pepper/host_globals.h
index f91a65c7818d106d638a1413ec78b3f958bc4b52..5320234a4bf12fe9e8e33e241c073f5538543c71 100644
--- a/content/renderer/pepper/host_globals.h
+++ b/content/renderer/pepper/host_globals.h
@@ -31,27 +31,27 @@ class HostGlobals : public ppapi::PpapiGlobals {
}
// PpapiGlobals implementation.
- virtual ppapi::ResourceTracker* GetResourceTracker() OVERRIDE;
- virtual ppapi::VarTracker* GetVarTracker() OVERRIDE;
+ virtual ppapi::ResourceTracker* GetResourceTracker() override;
+ virtual ppapi::VarTracker* GetVarTracker() override;
virtual ppapi::CallbackTracker* GetCallbackTrackerForInstance(
- PP_Instance instance) OVERRIDE;
+ PP_Instance instance) override;
virtual ppapi::thunk::PPB_Instance_API* GetInstanceAPI(PP_Instance instance)
- OVERRIDE;
+ override;
virtual ppapi::thunk::ResourceCreationAPI* GetResourceCreationAPI(
- PP_Instance instance) OVERRIDE;
- virtual PP_Module GetModuleForInstance(PP_Instance instance) OVERRIDE;
- virtual std::string GetCmdLine() OVERRIDE;
- virtual void PreCacheFontForFlash(const void* logfontw) OVERRIDE;
+ PP_Instance instance) override;
+ virtual PP_Module GetModuleForInstance(PP_Instance instance) override;
+ virtual std::string GetCmdLine() override;
+ virtual void PreCacheFontForFlash(const void* logfontw) override;
virtual void LogWithSource(PP_Instance instance,
PP_LogLevel level,
const std::string& source,
- const std::string& value) OVERRIDE;
+ const std::string& value) override;
virtual void BroadcastLogWithSource(PP_Module module,
PP_LogLevel level,
const std::string& source,
- const std::string& value) OVERRIDE;
- virtual ppapi::MessageLoopShared* GetCurrentMessageLoop() OVERRIDE;
- virtual base::TaskRunner* GetFileTaskRunner() OVERRIDE;
+ const std::string& value) override;
+ virtual ppapi::MessageLoopShared* GetCurrentMessageLoop() override;
+ virtual base::TaskRunner* GetFileTaskRunner() override;
HostVarTracker* host_var_tracker() { return &host_var_tracker_; }
@@ -88,7 +88,7 @@ class HostGlobals : public ppapi::PpapiGlobals {
private:
// PpapiGlobals overrides.
- virtual bool IsHostGlobals() const OVERRIDE;
+ virtual bool IsHostGlobals() const override;
static HostGlobals* host_globals_;
« no previous file with comments | « content/renderer/pepper/host_array_buffer_var.h ('k') | content/renderer/pepper/host_resource_var.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698