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

Unified Diff: sandbox/mac/xpc_message_server_unittest.cc

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 | « sandbox/mac/xpc_message_server.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/mac/xpc_message_server_unittest.cc
diff --git a/sandbox/mac/xpc_message_server_unittest.cc b/sandbox/mac/xpc_message_server_unittest.cc
index af8280e4a21b493a798a390bdca358bcae693e09..734096cda1fa337e34784d0baaa7f5ba20718b0d 100644
--- a/sandbox/mac/xpc_message_server_unittest.cc
+++ b/sandbox/mac/xpc_message_server_unittest.cc
@@ -43,7 +43,7 @@ class BlockDemuxer : public MessageDemuxer {
pipe_(NULL) {
}
- virtual ~BlockDemuxer() {
+ ~BlockDemuxer() override {
if (pipe_)
xpc_release(pipe_);
if (demux_block_)
@@ -68,7 +68,7 @@ class BlockDemuxer : public MessageDemuxer {
return true;
}
- virtual void DemuxMessage(IPCMessage request) override {
+ void DemuxMessage(IPCMessage request) override {
demux_block_(request);
}
« no previous file with comments | « sandbox/mac/xpc_message_server.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698