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

Unified Diff: content/renderer/plugin_channel_host.h

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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_plugin_delegate_impl.h ('k') | content/renderer/render_process_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/plugin_channel_host.h
diff --git a/content/renderer/plugin_channel_host.h b/content/renderer/plugin_channel_host.h
index 0c191ff27aede0cf1378bd0480a04e2dd0ee3cc6..486098d2432d32942b0f9f352df0c62670178105 100644
--- a/content/renderer/plugin_channel_host.h
+++ b/content/renderer/plugin_channel_host.h
@@ -23,19 +23,19 @@ class PluginChannelHost : public NPChannelBase {
virtual bool Init(base::MessageLoopProxy* ipc_message_loop,
bool create_pipe_now,
- base::WaitableEvent* shutdown_event);
+ base::WaitableEvent* shutdown_event) OVERRIDE;
- virtual int GenerateRouteID();
+ virtual int GenerateRouteID() OVERRIDE;
void AddRoute(int route_id, IPC::Channel::Listener* listener,
NPObjectBase* npobject);
void RemoveRoute(int route_id);
// NPChannelBase override:
- virtual bool Send(IPC::Message* msg);
+ virtual bool Send(IPC::Message* msg) OVERRIDE;
// IPC::Channel::Listener override
- virtual void OnChannelError();
+ virtual void OnChannelError() OVERRIDE;
static void SetListening(bool flag);
@@ -54,7 +54,7 @@ class PluginChannelHost : public NPChannelBase {
static NPChannelBase* ClassFactory() { return new PluginChannelHost(); }
- virtual bool OnControlMessageReceived(const IPC::Message& message);
+ virtual bool OnControlMessageReceived(const IPC::Message& message) OVERRIDE;
void OnSetException(const std::string& message);
void OnPluginShuttingDown();
« no previous file with comments | « content/renderer/pepper_plugin_delegate_impl.h ('k') | content/renderer/render_process_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698