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

Unified Diff: sync/util/test_unrecoverable_error_handler.h

Issue 642023004: Standardize usage of virtual/override/final in sync/ (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 | « sync/tools/sync_listen_notifications.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/util/test_unrecoverable_error_handler.h
diff --git a/sync/util/test_unrecoverable_error_handler.h b/sync/util/test_unrecoverable_error_handler.h
index c880ffd38dcc801c62d2b4ee4e79ce5356fec6b8..ae0610c576b2af7ed029f088a3775358b902782a 100644
--- a/sync/util/test_unrecoverable_error_handler.h
+++ b/sync/util/test_unrecoverable_error_handler.h
@@ -15,10 +15,10 @@ namespace syncer {
class TestUnrecoverableErrorHandler : public UnrecoverableErrorHandler {
public:
TestUnrecoverableErrorHandler();
- virtual ~TestUnrecoverableErrorHandler();
+ ~TestUnrecoverableErrorHandler() override;
- virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
- const std::string& message) override;
+ void OnUnrecoverableError(const tracked_objects::Location& from_here,
+ const std::string& message) override;
};
} // namespace syncer
« no previous file with comments | « sync/tools/sync_listen_notifications.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698