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

Unified Diff: google_apis/gaia/account_tracker_unittest.cc

Issue 625293003: replace OVERRIDE and FINAL with override and final in google_apis/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another rebase on master 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 | « google_apis/gaia/account_tracker.h ('k') | google_apis/gaia/fake_identity_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gaia/account_tracker_unittest.cc
diff --git a/google_apis/gaia/account_tracker_unittest.cc b/google_apis/gaia/account_tracker_unittest.cc
index fe8346eeb25fcb332a7eb5b722a4c7a6ea794797..8b6d298f91436be791a7e691d19ed6270c9013d1 100644
--- a/google_apis/gaia/account_tracker_unittest.cc
+++ b/google_apis/gaia/account_tracker_unittest.cc
@@ -136,10 +136,10 @@ class AccountTrackerObserver : public AccountTracker::Observer {
void SortEventsByUser();
// AccountTracker::Observer implementation
- virtual void OnAccountAdded(const AccountIds& ids) OVERRIDE;
- virtual void OnAccountRemoved(const AccountIds& ids) OVERRIDE;
+ virtual void OnAccountAdded(const AccountIds& ids) override;
+ virtual void OnAccountRemoved(const AccountIds& ids) override;
virtual void OnAccountSignInChanged(const AccountIds& ids, bool is_signed_in)
- OVERRIDE;
+ override;
private:
testing::AssertionResult CheckEvents(
@@ -266,7 +266,7 @@ class IdentityAccountTrackerTest : public testing::Test {
virtual ~IdentityAccountTrackerTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
fake_oauth2_token_service_.reset(new FakeOAuth2TokenService());
@@ -280,7 +280,7 @@ class IdentityAccountTrackerTest : public testing::Test {
account_tracker_->AddObserver(&observer_);
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
account_tracker_->RemoveObserver(&observer_);
account_tracker_->Shutdown();
}
« no previous file with comments | « google_apis/gaia/account_tracker.h ('k') | google_apis/gaia/fake_identity_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698