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

Unified Diff: ppapi/proxy/plugin_globals.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_array_buffer_var.h ('k') | ppapi/proxy/plugin_globals.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/plugin_globals.h
diff --git a/ppapi/proxy/plugin_globals.h b/ppapi/proxy/plugin_globals.h
index 04c333ca93a72393f9d5af70313009d095620e44..2aaf15770ac12424574961a16d9421bdb383e223 100644
--- a/ppapi/proxy/plugin_globals.h
+++ b/ppapi/proxy/plugin_globals.h
@@ -53,28 +53,28 @@ class PPAPI_PROXY_EXPORT PluginGlobals : public PpapiGlobals {
}
// PpapiGlobals implementation.
- virtual ResourceTracker* GetResourceTracker() OVERRIDE;
- virtual VarTracker* GetVarTracker() OVERRIDE;
+ virtual ResourceTracker* GetResourceTracker() override;
+ virtual VarTracker* GetVarTracker() override;
virtual CallbackTracker* GetCallbackTrackerForInstance(
- PP_Instance instance) OVERRIDE;
+ PP_Instance instance) override;
virtual thunk::PPB_Instance_API* GetInstanceAPI(
- PP_Instance instance) OVERRIDE;
+ PP_Instance instance) override;
virtual 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 MessageLoopShared* GetCurrentMessageLoop() OVERRIDE;
- base::TaskRunner* GetFileTaskRunner() OVERRIDE;
- virtual void MarkPluginIsActive() OVERRIDE;
+ const std::string& value) override;
+ virtual MessageLoopShared* GetCurrentMessageLoop() override;
+ base::TaskRunner* GetFileTaskRunner() override;
+ virtual void MarkPluginIsActive() override;
// Returns the channel for sending to the browser.
IPC::Sender* GetBrowserSender();
@@ -145,7 +145,7 @@ class PPAPI_PROXY_EXPORT PluginGlobals : public PpapiGlobals {
class BrowserSender;
// PpapiGlobals overrides.
- virtual bool IsPluginGlobals() const OVERRIDE;
+ virtual bool IsPluginGlobals() const override;
// Locks the proxy lock and releases the throttle on keepalive IPC messages.
void OnReleaseKeepaliveThrottle();
« no previous file with comments | « ppapi/proxy/plugin_array_buffer_var.h ('k') | ppapi/proxy/plugin_globals.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698