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

Unified Diff: google_apis/gaia/ubertoken_fetcher_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/gaia/oauth2_token_service_unittest.cc ('k') | google_apis/gcm/base/mcs_message_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gaia/ubertoken_fetcher_unittest.cc
diff --git a/google_apis/gaia/ubertoken_fetcher_unittest.cc b/google_apis/gaia/ubertoken_fetcher_unittest.cc
index 6659cca250e0bf498d8a8d4466bd2a8e2352e9a6..dc1edc32b76e3f68d7466cc6ca0f18e47d179c69 100644
--- a/google_apis/gaia/ubertoken_fetcher_unittest.cc
+++ b/google_apis/gaia/ubertoken_fetcher_unittest.cc
@@ -46,7 +46,7 @@ class MockUbertokenConsumer : public UbertokenConsumer {
class UbertokenFetcherTest : public testing::Test {
public:
- virtual void SetUp() override {
+ void SetUp() override {
request_context_getter_ = new net::TestURLRequestContextGetter(
base::MessageLoopProxy::current());
fetcher_.reset(new UbertokenFetcher(&token_service_,
@@ -55,9 +55,7 @@ class UbertokenFetcherTest : public testing::Test {
request_context_getter_.get()));
}
- virtual void TearDown() override {
- fetcher_.reset();
- }
+ void TearDown() override { fetcher_.reset(); }
protected:
base::MessageLoop message_loop_;
« no previous file with comments | « google_apis/gaia/oauth2_token_service_unittest.cc ('k') | google_apis/gcm/base/mcs_message_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698