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

Unified Diff: ppapi/nacl_irt/ppapi_dispatcher.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/nacl_irt/manifest_service.cc ('k') | ppapi/proxy/audio_buffer_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/nacl_irt/ppapi_dispatcher.h
diff --git a/ppapi/nacl_irt/ppapi_dispatcher.h b/ppapi/nacl_irt/ppapi_dispatcher.h
index ebbef8207f9bc36da78b87ccd491a31bae9c8b6b..0b436067dde52e4d0889894007cbf68e30bcfd1e 100644
--- a/ppapi/nacl_irt/ppapi_dispatcher.h
+++ b/ppapi/nacl_irt/ppapi_dispatcher.h
@@ -52,34 +52,34 @@ class PpapiDispatcher : public proxy::PluginDispatcher::PluginDelegate,
int renderer_ipc_fd);
// PluginDispatcher::PluginDelegate 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 peer_pid,
- bool should_close_source) OVERRIDE;
- virtual std::set<PP_Instance>* GetGloballySeenInstanceIDSet() OVERRIDE;
+ bool should_close_source) override;
+ virtual std::set<PP_Instance>* GetGloballySeenInstanceIDSet() override;
virtual uint32 Register(
- proxy::PluginDispatcher* plugin_dispatcher) OVERRIDE;
- virtual void Unregister(uint32 plugin_dispatcher_id) OVERRIDE;
+ proxy::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(
proxy::Connection connection,
PP_Instance instance,
const PP_BrowserFont_Trusted_Description& desc,
- const Preferences& prefs) OVERRIDE;
+ const Preferences& prefs) override;
// IPC::Listener implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual void OnChannelError() OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual void OnChannelError() override;
// IPC::Sender implementation
- virtual bool Send(IPC::Message* message) OVERRIDE;
+ virtual bool Send(IPC::Message* message) override;
private:
void OnMsgInitializeNaClDispatcher(const PpapiNaClPluginArgs& args);
« no previous file with comments | « ppapi/nacl_irt/manifest_service.cc ('k') | ppapi/proxy/audio_buffer_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698