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

Unified Diff: content/plugin/plugin_channel.h

Issue 630803002: Replace OVERRIDE and FINAL with override and final in content/plugin/[a-s]* (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 | « no previous file | content/plugin/plugin_channel.cc » ('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 ffe5c79cc9b2cac5d4452665993213427e33eab9..ec79dd02ebabbac5a558f83abb1bf609dc8ac699 100644
--- a/content/plugin/plugin_channel.h
+++ b/content/plugin/plugin_channel.h
@@ -33,17 +33,17 @@ class PluginChannel : public NPChannelBase {
static void NotifyRenderersOfPendingShutdown();
// IPC::Listener:
- virtual bool Send(IPC::Message* msg) OVERRIDE;
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual void OnChannelError() OVERRIDE;
+ virtual bool Send(IPC::Message* msg) override;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual void OnChannelError() override;
int renderer_id() { return renderer_id_; }
- virtual int GenerateRouteID() OVERRIDE;
+ 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(int render_view_id) OVERRIDE;
+ virtual base::WaitableEvent* GetModalDialogEvent(int render_view_id) override;
bool in_send() { return in_send_ != 0; }
@@ -60,10 +60,10 @@ class PluginChannel : public NPChannelBase {
virtual ~PluginChannel();
// NPChannelBase::
- virtual void CleanUp() OVERRIDE;
+ virtual void CleanUp() override;
virtual bool Init(base::MessageLoopProxy* ipc_message_loop,
bool create_pipe_now,
- base::WaitableEvent* shutdown_event) OVERRIDE;
+ base::WaitableEvent* shutdown_event) override;
private:
class MessageFilter;
@@ -71,7 +71,7 @@ class PluginChannel : public NPChannelBase {
// Called on the plugin thread
PluginChannel();
- virtual bool OnControlMessageReceived(const IPC::Message& msg) OVERRIDE;
+ virtual bool OnControlMessageReceived(const IPC::Message& msg) override;
static NPChannelBase* ClassFactory() { return new PluginChannel(); }
« no previous file with comments | « no previous file | content/plugin/plugin_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698