| Index: google_apis/gaia/oauth2_api_call_flow.cc | 
| diff --git a/google_apis/gaia/oauth2_api_call_flow.cc b/google_apis/gaia/oauth2_api_call_flow.cc | 
| index 4c4940d9853e695091f3c35425f732731cf271f4..9688e5ac6e54711f44624f8d003f3ab40b5e5b18 100644 | 
| --- a/google_apis/gaia/oauth2_api_call_flow.cc | 
| +++ b/google_apis/gaia/oauth2_api_call_flow.cc | 
| @@ -10,6 +10,7 @@ | 
| #include "base/basictypes.h" | 
| #include "base/strings/stringprintf.h" | 
| #include "google_apis/gaia/gaia_urls.h" | 
| +#include "google_apis/gaia/oauth2_access_token_fetcher_impl.h" | 
| #include "net/base/escape.h" | 
| #include "net/base/load_flags.h" | 
| #include "net/http/http_status_code.h" | 
| @@ -126,7 +127,7 @@ void OAuth2ApiCallFlow::EndMintAccessToken( | 
| } | 
|  | 
| OAuth2AccessTokenFetcher* OAuth2ApiCallFlow::CreateAccessTokenFetcher() { | 
| -  return new OAuth2AccessTokenFetcher(this, context_); | 
| +  return new OAuth2AccessTokenFetcherImpl(this, context_); | 
| } | 
|  | 
| void OAuth2ApiCallFlow::OnURLFetchComplete(const net::URLFetcher* source) { | 
|  |