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

Unified Diff: dbus/end_to_end_async_unittest.cc

Issue 802213003: Standardize usage of virtual/override/final specifiers in dbus/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « dbus/dbus_statistics_unittest.cc ('k') | dbus/end_to_end_sync_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/end_to_end_async_unittest.cc
diff --git a/dbus/end_to_end_async_unittest.cc b/dbus/end_to_end_async_unittest.cc
index bd75bba4d5a3b42a44338cf1ab931b7bfea86952..884683019e3ce4bcaf32c4ce59d142d02ee4a8fe 100644
--- a/dbus/end_to_end_async_unittest.cc
+++ b/dbus/end_to_end_async_unittest.cc
@@ -35,7 +35,7 @@ const int kHugePayloadSize = 64 << 20; // 64 MB
// ExportedObject.
class EndToEndAsyncTest : public testing::Test {
public:
- virtual void SetUp() {
+ void SetUp() override {
// Make the main thread not to allow IO.
base::ThreadRestrictions::SetIOAllowed(false);
@@ -112,7 +112,7 @@ class EndToEndAsyncTest : public testing::Test {
run_loop_->Run();
}
- virtual void TearDown() {
+ void TearDown() override {
bus_->ShutdownOnDBusThreadAndBlock();
// Shut down the service.
@@ -582,7 +582,7 @@ class SignalMultipleHandlerTest : public EndToEndAsyncTest {
SignalMultipleHandlerTest() {
}
- virtual void SetUp() {
+ void SetUp() override {
// Set up base class.
EndToEndAsyncTest::SetUp();
« no previous file with comments | « dbus/dbus_statistics_unittest.cc ('k') | dbus/end_to_end_sync_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698