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

Unified Diff: content/plugin/plugin_channel.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/gpu/gpu_watchdog_thread.h ('k') | content/plugin/plugin_thread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/plugin/plugin_channel.h
diff --git a/content/plugin/plugin_channel.h b/content/plugin/plugin_channel.h
index c8665d9c5232bd2b20bb82025b63d32e1789e772..27acc4cb4200e3f7d55a7bb60ca234e1b698f7f6 100644
--- a/content/plugin/plugin_channel.h
+++ b/content/plugin/plugin_channel.h
@@ -33,18 +33,18 @@ class PluginChannel : public NPChannelBase {
virtual ~PluginChannel();
- virtual bool Send(IPC::Message* msg);
- virtual bool OnMessageReceived(const IPC::Message& message);
+ virtual bool Send(IPC::Message* msg) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
base::ProcessHandle renderer_handle() const { return renderer_handle_; }
int renderer_id() { return renderer_id_; }
- virtual int GenerateRouteID();
+ virtual int GenerateRouteID() OVERRIDE;
// Returns the event that's set when a call to the renderer causes a modal
// dialog to come up.
virtual base::WaitableEvent* GetModalDialogEvent(
- gfx::NativeViewId containing_window);
+ gfx::NativeViewId containing_window) OVERRIDE;
bool in_send() { return in_send_ != 0; }
@@ -62,12 +62,12 @@ class PluginChannel : public NPChannelBase {
virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
virtual void OnChannelError() OVERRIDE;
- virtual void CleanUp();
+ virtual void CleanUp() OVERRIDE;
// Overrides NPChannelBase::Init.
virtual bool Init(base::MessageLoopProxy* ipc_message_loop,
bool create_pipe_now,
- base::WaitableEvent* shutdown_event);
+ base::WaitableEvent* shutdown_event) OVERRIDE;
private:
class MessageFilter;
@@ -75,7 +75,7 @@ class PluginChannel : public NPChannelBase {
// Called on the plugin thread
PluginChannel();
- virtual bool OnControlMessageReceived(const IPC::Message& msg);
+ virtual bool OnControlMessageReceived(const IPC::Message& msg) OVERRIDE;
static NPChannelBase* ClassFactory() { return new PluginChannel(); }
« no previous file with comments | « content/gpu/gpu_watchdog_thread.h ('k') | content/plugin/plugin_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698