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

Unified Diff: chrome/service/service_ipc_server.h

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (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 | « chrome/service/net/service_url_request_context_getter.h ('k') | chrome/service/service_process.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_ipc_server.h
diff --git a/chrome/service/service_ipc_server.h b/chrome/service/service_ipc_server.h
index c397362d641f62b68d7af840543d62ed939176ef..b858df5d3fded4341dac1ed3b2e1971578df1ed4 100644
--- a/chrome/service/service_ipc_server.h
+++ b/chrome/service/service_ipc_server.h
@@ -26,12 +26,12 @@ class HistogramDeltaSerialization;
class ServiceIPCServer : public IPC::Listener, public IPC::Sender {
public:
explicit ServiceIPCServer(const IPC::ChannelHandle& handle);
- virtual ~ServiceIPCServer();
+ ~ServiceIPCServer() override;
bool Init();
// IPC::Sender implementation.
- virtual bool Send(IPC::Message* msg) override;
+ bool Send(IPC::Message* msg) override;
IPC::SyncChannel* channel() { return channel_.get(); }
@@ -48,9 +48,9 @@ class ServiceIPCServer : public IPC::Listener, public IPC::Sender {
friend class MockServiceIPCServer;
// IPC::Listener implementation.
- virtual bool OnMessageReceived(const IPC::Message& msg) override;
- virtual void OnChannelConnected(int32 peer_pid) override;
- virtual void OnChannelError() override;
+ bool OnMessageReceived(const IPC::Message& msg) override;
+ void OnChannelConnected(int32 peer_pid) override;
+ void OnChannelError() override;
// IPC message handlers.
void OnEnableCloudPrintProxyWithRobot(
« no previous file with comments | « chrome/service/net/service_url_request_context_getter.h ('k') | chrome/service/service_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698