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

Unified Diff: google_apis/gaia/account_tracker_unittest.cc

Issue 802413003: Standardize usage of virtual/override/final specifiers in google_apis/. (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 | « google_apis/drive/gdata_wapi_requests_unittest.cc ('k') | google_apis/gaia/gaia_oauth_client_unittest.cc » ('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 f3792a713cd16fef63bfdca8a28d2a097b442219..532ed355595e8f640fbe8c6aece4518f5c58ef52 100644
--- a/google_apis/gaia/account_tracker_unittest.cc
+++ b/google_apis/gaia/account_tracker_unittest.cc
@@ -264,10 +264,9 @@ class IdentityAccountTrackerTest : public testing::Test {
public:
IdentityAccountTrackerTest() {}
- virtual ~IdentityAccountTrackerTest() {}
-
- virtual void SetUp() override {
+ ~IdentityAccountTrackerTest() override {}
+ void SetUp() override {
fake_oauth2_token_service_.reset(new FakeOAuth2TokenService());
fake_identity_provider_.reset(
@@ -280,7 +279,7 @@ class IdentityAccountTrackerTest : public testing::Test {
account_tracker_->AddObserver(&observer_);
}
- virtual void TearDown() override {
+ void TearDown() override {
account_tracker_->RemoveObserver(&observer_);
account_tracker_->Shutdown();
}
« no previous file with comments | « google_apis/drive/gdata_wapi_requests_unittest.cc ('k') | google_apis/gaia/gaia_oauth_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698