| 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 a5509bee71ed787032745d76363debdfec5d6d4f..e9d2a2963a890f63a11f1824ee3885a15cb7b656 100644
|
| --- a/google_apis/gaia/gaia_oauth_client_unittest.cc
|
| +++ b/google_apis/gaia/gaia_oauth_client_unittest.cc
|
| @@ -48,9 +48,9 @@ class MockOAuthFetcher : public net::TestURLFetcher {
|
| SetResponseString(results);
|
| }
|
|
|
| - virtual ~MockOAuthFetcher() { }
|
| + ~MockOAuthFetcher() override {}
|
|
|
| - virtual void Start() override {
|
| + void Start() override {
|
| if ((GetResponseCode() != net::HTTP_OK) && (max_failure_count_ != -1) &&
|
| (current_failure_count_ == max_failure_count_)) {
|
| set_response_code(net::HTTP_OK);
|
| @@ -87,12 +87,11 @@ class MockOAuthFetcherFactory : public net::URLFetcherFactory,
|
| response_code_(net::HTTP_OK),
|
| complete_immediately_(true) {
|
| }
|
| - virtual ~MockOAuthFetcherFactory() {}
|
| - virtual net::URLFetcher* CreateURLFetcher(
|
| - int id,
|
| - const GURL& url,
|
| - net::URLFetcher::RequestType request_type,
|
| - net::URLFetcherDelegate* d) override {
|
| + ~MockOAuthFetcherFactory() override {}
|
| + net::URLFetcher* CreateURLFetcher(int id,
|
| + const GURL& url,
|
| + net::URLFetcher::RequestType request_type,
|
| + net::URLFetcherDelegate* d) override {
|
| url_fetcher_ = new MockOAuthFetcher(
|
| response_code_,
|
| max_failure_count_,
|
|
|