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

Unified Diff: dbus/test_service.h

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/signal_sender_verification_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/test_service.h
diff --git a/dbus/test_service.h b/dbus/test_service.h
index cc7d5211f915d6a034fed2ed310b7101a8d42392..5f215d3f266a7cff24e0680fa51bde77e940a6c4 100644
--- a/dbus/test_service.h
+++ b/dbus/test_service.h
@@ -46,7 +46,7 @@ class TestService : public base::Thread {
static const int kNumMethodsToExport;
explicit TestService(const Options& options);
- virtual ~TestService();
+ ~TestService() override;
// Starts the service in a separate thread.
// Returns true if the thread is started successfully.
@@ -106,7 +106,7 @@ class TestService : public base::Thread {
bool success);
// base::Thread override.
- virtual void Run(base::MessageLoop* message_loop) override;
+ void Run(base::MessageLoop* message_loop) override;
//
// Exported methods.
« no previous file with comments | « dbus/signal_sender_verification_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698