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

Unified Diff: sandbox/mac/launchd_interception_server.h

Issue 666193002: Standardize usage of virtual/override/final in sandbox/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert one clang-format change 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 | sandbox/mac/mach_message_server.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/mac/launchd_interception_server.h
diff --git a/sandbox/mac/launchd_interception_server.h b/sandbox/mac/launchd_interception_server.h
index 67baae0074980f18c5531f3cfbb572fb6f1b111b..144d67d947eaa200c3bc2a013a528887e305f87b 100644
--- a/sandbox/mac/launchd_interception_server.h
+++ b/sandbox/mac/launchd_interception_server.h
@@ -25,7 +25,7 @@ struct BootstrapSandboxPolicy;
class LaunchdInterceptionServer : public MessageDemuxer {
public:
explicit LaunchdInterceptionServer(const BootstrapSandbox* sandbox);
- virtual ~LaunchdInterceptionServer();
+ ~LaunchdInterceptionServer() override;
// Initializes the class and starts running the message server. If the
// |server_receive_right| is non-NULL, this class will take ownership of
@@ -33,7 +33,7 @@ class LaunchdInterceptionServer : public MessageDemuxer {
bool Initialize(mach_port_t server_receive_right);
// MessageDemuxer:
- virtual void DemuxMessage(IPCMessage request) override;
+ void DemuxMessage(IPCMessage request) override;
mach_port_t server_port() const { return message_server_->GetServerPort(); }
« no previous file with comments | « no previous file | sandbox/mac/mach_message_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698