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

Unified Diff: chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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
Index: chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
diff --git a/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc b/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
index 9b972b6c02fa59e9fe57e7e11c57b964415442c1..105cdf58c916a4a24b8d5f0613c7d8818b18c9cf 100644
--- a/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
+++ b/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
@@ -76,17 +76,13 @@ class TestingPrefStoreWithCustomReadError : public TestingPrefStore {
// By default the profile is "new" (NO_FILE means that the profile
// wasn't found on disk, so it was created).
}
- virtual PrefReadError GetReadError() const override {
- return read_error_;
- }
- virtual bool IsInitializationComplete() const override {
- return true;
- }
+ PrefReadError GetReadError() const override { return read_error_; }
+ bool IsInitializationComplete() const override { return true; }
void set_read_error(PrefReadError read_error) {
read_error_ = read_error;
}
private:
- virtual ~TestingPrefStoreWithCustomReadError() {}
+ ~TestingPrefStoreWithCustomReadError() override {}
PrefReadError read_error_;
};

Powered by Google App Engine
This is Rietveld 408576698