| Index: chrome/common/net/gaia/oauth2_api_call_flow_unittest.cc
|
| diff --git a/chrome/common/net/gaia/oauth2_api_call_flow_unittest.cc b/chrome/common/net/gaia/oauth2_api_call_flow_unittest.cc
|
| index b36b185e3957323f6680441d849815c9721d12ed..f24655879100017436d5468306968668c9315e7b 100644
|
| --- a/chrome/common/net/gaia/oauth2_api_call_flow_unittest.cc
|
| +++ b/chrome/common/net/gaia/oauth2_api_call_flow_unittest.cc
|
| @@ -60,10 +60,10 @@ class MockUrlFetcherFactory : public ScopedURLFetcherFactory,
|
|
|
| MOCK_METHOD4(
|
| CreateURLFetcher,
|
| - content::URLFetcher* (int id,
|
| - const GURL& url,
|
| - URLFetcher::RequestType request_type,
|
| - URLFetcherDelegate* d));
|
| + URLFetcher* (int id,
|
| + const GURL& url,
|
| + URLFetcher::RequestType request_type,
|
| + URLFetcherDelegate* d));
|
| };
|
|
|
| class MockAccessTokenFetcher : public OAuth2AccessTokenFetcher {
|
| @@ -92,9 +92,9 @@ class MockApiCallFlow : public OAuth2ApiCallFlow {
|
| MOCK_METHOD0(CreateApiCallUrl, GURL ());
|
| MOCK_METHOD0(CreateApiCallBody, std::string ());
|
| MOCK_METHOD1(ProcessApiCallSuccess,
|
| - void (const net::URLFetcher* source));
|
| + void (const URLFetcher* source));
|
| MOCK_METHOD1(ProcessApiCallFailure,
|
| - void (const net::URLFetcher* source));
|
| + void (const URLFetcher* source));
|
| MOCK_METHOD1(ProcessNewAccessToken,
|
| void (const std::string& access_token));
|
| MOCK_METHOD1(ProcessMintAccessTokenFailure,
|
|
|