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

Unified Diff: components/nacl/broker/nacl_broker_listener.h

Issue 1056633004: Update {virtual,override} to follow C++11 style in components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix logo tracker unittest. Created 5 years, 8 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 | « components/leveldb_proto/testing/fake_db.h ('k') | components/nacl/browser/nacl_broker_host_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/broker/nacl_broker_listener.h
diff --git a/components/nacl/broker/nacl_broker_listener.h b/components/nacl/broker/nacl_broker_listener.h
index 46dc9023e2feb8fd1aaf980c3419f68b8810ef65..61d2651ed31facc9218a19d07f7759d347fb4d81 100644
--- a/components/nacl/broker/nacl_broker_listener.h
+++ b/components/nacl/broker/nacl_broker_listener.h
@@ -21,18 +21,17 @@ class NaClBrokerListener : public content::SandboxedProcessLauncherDelegate,
public IPC::Listener {
public:
NaClBrokerListener();
- ~NaClBrokerListener();
+ ~NaClBrokerListener() override;
void Listen();
// content::SandboxedProcessLauncherDelegate implementation:
- virtual void PreSpawnTarget(sandbox::TargetPolicy* policy,
- bool* success) override;
+ void PreSpawnTarget(sandbox::TargetPolicy* policy, bool* success) override;
// IPC::Listener implementation.
- virtual void OnChannelConnected(int32 peer_pid) override;
- virtual bool OnMessageReceived(const IPC::Message& msg) override;
- virtual void OnChannelError() override;
+ void OnChannelConnected(int32 peer_pid) override;
+ bool OnMessageReceived(const IPC::Message& msg) override;
+ void OnChannelError() override;
private:
void OnLaunchLoaderThroughBroker(const std::string& loader_channel_id);
« no previous file with comments | « components/leveldb_proto/testing/fake_db.h ('k') | components/nacl/browser/nacl_broker_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698