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

Unified Diff: ppapi/proxy/ppapi_proxy_test.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/ppapi_command_buffer_proxy.h ('k') | ppapi/proxy/ppb_audio_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppapi_proxy_test.h
diff --git a/ppapi/proxy/ppapi_proxy_test.h b/ppapi/proxy/ppapi_proxy_test.h
index 980510563afd9ad5e8c213dd60dde29c05435032..ce9ec655f72d3c0f41644582f6681c04f47d0df1 100644
--- a/ppapi/proxy/ppapi_proxy_test.h
+++ b/ppapi/proxy/ppapi_proxy_test.h
@@ -131,28 +131,28 @@ class PluginProxyTestHarness : public ProxyTestHarnessBase {
}
// ProxyChannel::Delegate implementation.
- virtual base::MessageLoopProxy* GetIPCMessageLoop() OVERRIDE;
- virtual base::WaitableEvent* GetShutdownEvent() OVERRIDE;
+ virtual base::MessageLoopProxy* GetIPCMessageLoop() override;
+ virtual base::WaitableEvent* GetShutdownEvent() override;
virtual IPC::PlatformFileForTransit ShareHandleWithRemote(
base::PlatformFile handle,
base::ProcessId remote_pid,
- bool should_close_source) OVERRIDE;
+ bool should_close_source) override;
// PluginDispatcher::PluginDelegate implementation.
- virtual std::set<PP_Instance>* GetGloballySeenInstanceIDSet() OVERRIDE;
- virtual uint32 Register(PluginDispatcher* plugin_dispatcher) OVERRIDE;
- virtual void Unregister(uint32 plugin_dispatcher_id) OVERRIDE;
+ virtual std::set<PP_Instance>* GetGloballySeenInstanceIDSet() override;
+ virtual uint32 Register(PluginDispatcher* plugin_dispatcher) override;
+ virtual void Unregister(uint32 plugin_dispatcher_id) override;
// PluginProxyDelegate implementation.
- virtual IPC::Sender* GetBrowserSender() OVERRIDE;
- virtual std::string GetUILanguage() OVERRIDE;
- virtual void PreCacheFont(const void* logfontw) OVERRIDE;
- virtual void SetActiveURL(const std::string& url) OVERRIDE;
+ virtual IPC::Sender* GetBrowserSender() override;
+ virtual std::string GetUILanguage() override;
+ virtual void PreCacheFont(const void* logfontw) override;
+ virtual void SetActiveURL(const std::string& url) override;
virtual PP_Resource CreateBrowserFont(
Connection connection,
PP_Instance instance,
const PP_BrowserFont_Trusted_Description& desc,
- const Preferences& prefs) OVERRIDE;
+ const Preferences& prefs) override;
private:
base::MessageLoopProxy* ipc_message_loop_; // Weak
@@ -223,7 +223,7 @@ class PluginProxyMultiThreadTest
private:
// base::DelegateSimpleThread::Delegate implementation.
- virtual void Run() OVERRIDE;
+ virtual void Run() override;
void QuitNestedLoop();
@@ -275,7 +275,7 @@ class HostProxyTestHarness : public ProxyTestHarnessBase {
virtual IPC::PlatformFileForTransit ShareHandleWithRemote(
base::PlatformFile handle,
base::ProcessId remote_pid,
- bool should_close_source) OVERRIDE;
+ bool should_close_source) override;
private:
base::MessageLoopProxy* ipc_message_loop_; // Weak
« no previous file with comments | « ppapi/proxy/ppapi_command_buffer_proxy.h ('k') | ppapi/proxy/ppb_audio_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698