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

Unified Diff: ppapi/nacl_irt/ppapi_dispatcher.h

Issue 1097393007: Update {virtual,override} to follow C++11 style in ppapi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split off one file into separate review. Created 5 years, 8 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 0b436067dde52e4d0889894007cbf68e30bcfd1e..c03b8b0f01f13744305ed6297444a33f32d4e263 100644
--- a/ppapi/nacl_irt/ppapi_dispatcher.h
+++ b/ppapi/nacl_irt/ppapi_dispatcher.h
@@ -52,34 +52,32 @@ class PpapiDispatcher : public proxy::PluginDispatcher::PluginDelegate,
int renderer_ipc_fd);
// PluginDispatcher::PluginDelegate implementation.
- virtual base::MessageLoopProxy* GetIPCMessageLoop() override;
- virtual base::WaitableEvent* GetShutdownEvent() override;
- virtual IPC::PlatformFileForTransit ShareHandleWithRemote(
+ base::MessageLoopProxy* GetIPCMessageLoop() override;
+ base::WaitableEvent* GetShutdownEvent() override;
+ IPC::PlatformFileForTransit ShareHandleWithRemote(
base::PlatformFile handle,
base::ProcessId peer_pid,
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;
+ std::set<PP_Instance>* GetGloballySeenInstanceIDSet() override;
+ uint32 Register(proxy::PluginDispatcher* plugin_dispatcher) override;
+ 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 PP_Resource CreateBrowserFont(
- proxy::Connection connection,
- PP_Instance instance,
- const PP_BrowserFont_Trusted_Description& desc,
- const Preferences& prefs) override;
+ IPC::Sender* GetBrowserSender() override;
+ std::string GetUILanguage() override;
+ void PreCacheFont(const void* logfontw) override;
+ void SetActiveURL(const std::string& url) override;
+ PP_Resource CreateBrowserFont(proxy::Connection connection,
+ PP_Instance instance,
+ const PP_BrowserFont_Trusted_Description& desc,
+ const Preferences& prefs) override;
// IPC::Listener implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) override;
- virtual void OnChannelError() override;
+ bool OnMessageReceived(const IPC::Message& message) override;
+ void OnChannelError() override;
// IPC::Sender implementation
- virtual bool Send(IPC::Message* message) override;
+ 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