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

Unified Diff: util/mach/mach_message_server_test.cc

Issue 654933002: Use exactly one of final, override, and virtual (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: git grep -E '^ {3,}.*override[ 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 | « util/mach/exception_ports_test.cc ('k') | util/mach/scoped_task_suspend_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/mach/mach_message_server_test.cc
diff --git a/util/mach/mach_message_server_test.cc b/util/mach/mach_message_server_test.cc
index fe6f0eddc5f6ccbe733268a8f435bfad69cb7139..b4862ec420c601c55ba375ad0ccf05eaa4589091 100644
--- a/util/mach/mach_message_server_test.cc
+++ b/util/mach/mach_message_server_test.cc
@@ -271,11 +271,11 @@ class TestMachMessageServer : public MachMessageServer::Interface,
return true;
}
- virtual mach_msg_size_t MachMessageServerRequestSize() override {
+ mach_msg_size_t MachMessageServerRequestSize() override {
return sizeof(RequestMessage);
}
- virtual mach_msg_size_t MachMessageServerReplySize() override {
+ mach_msg_size_t MachMessageServerReplySize() override {
return sizeof(ReplyMessage);
}
@@ -304,7 +304,7 @@ class TestMachMessageServer : public MachMessageServer::Interface,
// MachMultiprocess:
- virtual void MachMultiprocessParent() override {
+ void MachMultiprocessParent() override {
mach_port_t local_port = LocalPort();
kern_return_t kr;
@@ -381,7 +381,7 @@ class TestMachMessageServer : public MachMessageServer::Interface,
}
}
- virtual void MachMultiprocessChild() override {
+ void MachMultiprocessChild() override {
if (options_.child_wait_for_parent_pipe_early) {
// Wait until the parent is done setting things up on its end.
char c;
« no previous file with comments | « util/mach/exception_ports_test.cc ('k') | util/mach/scoped_task_suspend_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698