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

Unified Diff: components/nacl/renderer/trusted_plugin_channel.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (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: components/nacl/renderer/trusted_plugin_channel.h
diff --git a/components/nacl/renderer/trusted_plugin_channel.h b/components/nacl/renderer/trusted_plugin_channel.h
index dfc92c076480a663552f19aab2fd3a5fbc00b600..efeb5e8fe988834df922756ebb6924feef60d6ad 100644
--- a/components/nacl/renderer/trusted_plugin_channel.h
+++ b/components/nacl/renderer/trusted_plugin_channel.h
@@ -29,13 +29,13 @@ class TrustedPluginChannel : public IPC::Listener {
const IPC::ChannelHandle& handle,
base::WaitableEvent* shutdown_event,
bool report_exit_status);
- virtual ~TrustedPluginChannel();
+ ~TrustedPluginChannel() override;
bool Send(IPC::Message* message);
// Listener implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) override;
- virtual void OnChannelError() override;
+ bool OnMessageReceived(const IPC::Message& message) override;
+ void OnChannelError() override;
void OnReportExitStatus(int exit_status);

Powered by Google App Engine
This is Rietveld 408576698