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

Unified Diff: ipc/mojo/ipc_mojo_bootstrap.h

Issue 645623006: Standardize usage of virtual/override/final in ipc/ (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
Index: ipc/mojo/ipc_mojo_bootstrap.h
diff --git a/ipc/mojo/ipc_mojo_bootstrap.h b/ipc/mojo/ipc_mojo_bootstrap.h
index 540becfbd2b7ffb823eae69443cfa1d24458f5b4..0d007ddbb72b4eabc1547db1a289ab73996bf808 100644
--- a/ipc/mojo/ipc_mojo_bootstrap.h
+++ b/ipc/mojo/ipc_mojo_bootstrap.h
@@ -41,7 +41,7 @@ class IPC_MOJO_EXPORT MojoBootstrap : public Listener {
Delegate* delegate);
MojoBootstrap();
- virtual ~MojoBootstrap();
+ ~MojoBootstrap() override;
// Start the handshake over the underlying platform channel.
bool Connect();
@@ -68,8 +68,8 @@ class IPC_MOJO_EXPORT MojoBootstrap : public Listener {
void Init(scoped_ptr<Channel> channel, Delegate* delegate);
// Listener implementations
- virtual void OnBadMessageReceived(const Message& message) override;
- virtual void OnChannelError() override;
+ void OnBadMessageReceived(const Message& message) override;
+ void OnChannelError() override;
scoped_ptr<Channel> channel_;
Delegate* delegate_;

Powered by Google App Engine
This is Rietveld 408576698