| Index: google_apis/gaia/gaia_oauth_client_unittest.cc
|
| diff --git a/google_apis/gaia/gaia_oauth_client_unittest.cc b/google_apis/gaia/gaia_oauth_client_unittest.cc
|
| index 9e4bfdfad22ee035a8ffc2bbc2972076778b613b..a5509bee71ed787032745d76363debdfec5d6d4f 100644
|
| --- a/google_apis/gaia/gaia_oauth_client_unittest.cc
|
| +++ b/google_apis/gaia/gaia_oauth_client_unittest.cc
|
| @@ -50,7 +50,7 @@ class MockOAuthFetcher : public net::TestURLFetcher {
|
|
|
| virtual ~MockOAuthFetcher() { }
|
|
|
| - virtual void Start() OVERRIDE {
|
| + virtual void Start() override {
|
| if ((GetResponseCode() != net::HTTP_OK) && (max_failure_count_ != -1) &&
|
| (current_failure_count_ == max_failure_count_)) {
|
| set_response_code(net::HTTP_OK);
|
| @@ -92,7 +92,7 @@ class MockOAuthFetcherFactory : public net::URLFetcherFactory,
|
| int id,
|
| const GURL& url,
|
| net::URLFetcher::RequestType request_type,
|
| - net::URLFetcherDelegate* d) OVERRIDE {
|
| + net::URLFetcherDelegate* d) override {
|
| url_fetcher_ = new MockOAuthFetcher(
|
| response_code_,
|
| max_failure_count_,
|
| @@ -172,7 +172,7 @@ namespace gaia {
|
|
|
| class GaiaOAuthClientTest : public testing::Test {
|
| protected:
|
| - virtual void SetUp() OVERRIDE {
|
| + virtual void SetUp() override {
|
| client_info_.client_id = "test_client_id";
|
| client_info_.client_secret = "test_client_secret";
|
| client_info_.redirect_uri = "test_redirect_uri";
|
| @@ -214,14 +214,14 @@ class MockGaiaOAuthClientDelegate : public gaia::GaiaOAuthClient::Delegate {
|
| MOCK_METHOD1(OnGetUserInfoResponsePtr,
|
| void(const base::DictionaryValue* user_info));
|
| virtual void OnGetUserInfoResponse(
|
| - scoped_ptr<base::DictionaryValue> user_info) OVERRIDE {
|
| + scoped_ptr<base::DictionaryValue> user_info) override {
|
| user_info_.reset(user_info.release());
|
| OnGetUserInfoResponsePtr(user_info_.get());
|
| }
|
| MOCK_METHOD1(OnGetTokenInfoResponsePtr,
|
| void(const base::DictionaryValue* token_info));
|
| virtual void OnGetTokenInfoResponse(
|
| - scoped_ptr<base::DictionaryValue> token_info) OVERRIDE {
|
| + scoped_ptr<base::DictionaryValue> token_info) override {
|
| token_info_.reset(token_info.release());
|
| OnGetTokenInfoResponsePtr(token_info_.get());
|
| }
|
|
|