| Index: google_apis/gaia/oauth2_token_service_unittest.cc
|
| diff --git a/google_apis/gaia/oauth2_token_service_unittest.cc b/google_apis/gaia/oauth2_token_service_unittest.cc
|
| index 153db6575457d8499604c3319af93f8c615f3516..0cf0c6586ddd53a08b61f5c86ebf031addc116d5 100644
|
| --- a/google_apis/gaia/oauth2_token_service_unittest.cc
|
| +++ b/google_apis/gaia/oauth2_token_service_unittest.cc
|
| @@ -92,14 +92,14 @@ class TestOAuth2TokenService : public OAuth2TokenService {
|
|
|
| class OAuth2TokenServiceTest : public testing::Test {
|
| public:
|
| - virtual void SetUp() override {
|
| + void SetUp() override {
|
| oauth2_service_.reset(
|
| new TestOAuth2TokenService(new net::TestURLRequestContextGetter(
|
| message_loop_.message_loop_proxy())));
|
| account_id_ = "test_user@gmail.com";
|
| }
|
|
|
| - virtual void TearDown() override {
|
| + void TearDown() override {
|
| // Makes sure that all the clean up tasks are run.
|
| base::RunLoop().RunUntilIdle();
|
| }
|
|
|