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

Unified Diff: sandbox/mac/mach_message_server.h

Issue 628233002: replace OVERRIDE and FINAL with override and final in sandbox/ (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 | « sandbox/mac/launchd_interception_server.h ('k') | sandbox/mac/xpc_message_server.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/mac/mach_message_server.h
diff --git a/sandbox/mac/mach_message_server.h b/sandbox/mac/mach_message_server.h
index 95be5fb3306469bf4ad0a8ea79dcd1df1dd0d989..7c344f9288a6426f68f8006fa061f0e4fec8f8a7 100644
--- a/sandbox/mac/mach_message_server.h
+++ b/sandbox/mac/mach_message_server.h
@@ -33,16 +33,16 @@ class MachMessageServer : public MessageServer {
virtual ~MachMessageServer();
// MessageServer:
- virtual bool Initialize() OVERRIDE;
- virtual pid_t GetMessageSenderPID(IPCMessage request) OVERRIDE;
- virtual IPCMessage CreateReply(IPCMessage request) OVERRIDE;
- virtual bool SendReply(IPCMessage reply) OVERRIDE;
+ virtual bool Initialize() override;
+ virtual pid_t GetMessageSenderPID(IPCMessage request) override;
+ virtual IPCMessage CreateReply(IPCMessage request) override;
+ virtual bool SendReply(IPCMessage reply) override;
virtual void ForwardMessage(IPCMessage request,
- mach_port_t destination) OVERRIDE;
+ mach_port_t destination) override;
// Replies to the message with the specified |error_code| as a MIG
// error_reply RetCode.
- virtual void RejectMessage(IPCMessage request, int error_code) OVERRIDE;
- virtual mach_port_t GetServerPort() const OVERRIDE;
+ virtual void RejectMessage(IPCMessage request, int error_code) override;
+ virtual mach_port_t GetServerPort() const override;
private:
// Event handler for the |server_source_| that reads a message from the queue
« no previous file with comments | « sandbox/mac/launchd_interception_server.h ('k') | sandbox/mac/xpc_message_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698