| Index: chrome/common/net/gaia/oauth2_mint_token_fetcher.cc
|
| diff --git a/chrome/common/net/gaia/oauth2_mint_token_fetcher.cc b/chrome/common/net/gaia/oauth2_mint_token_fetcher.cc
|
| index 0d191baedffdadec87c97c583e7aec2c29015486..e46b3077b3afb3972dc905d989d077f05a2afb9c 100644
|
| --- a/chrome/common/net/gaia/oauth2_mint_token_fetcher.cc
|
| +++ b/chrome/common/net/gaia/oauth2_mint_token_fetcher.cc
|
| @@ -13,10 +13,10 @@
|
| #include "base/values.h"
|
| #include "chrome/common/net/gaia/gaia_urls.h"
|
| #include "chrome/common/net/gaia/google_service_auth_error.h"
|
| -#include "content/public/common/url_fetcher.h"
|
| #include "net/base/escape.h"
|
| #include "net/base/load_flags.h"
|
| #include "net/http/http_status_code.h"
|
| +#include "net/url_request/url_fetcher.h"
|
| #include "net/url_request/url_request_context_getter.h"
|
| #include "net/url_request/url_request_status.h"
|
|
|
| @@ -54,7 +54,7 @@ static URLFetcher* CreateFetcher(URLRequestContextGetter* getter,
|
| const std::string& body,
|
| URLFetcherDelegate* delegate) {
|
| bool empty_body = body.empty();
|
| - URLFetcher* result = content::URLFetcher::Create(
|
| + URLFetcher* result = net::URLFetcher::Create(
|
| 0, url,
|
| empty_body ? URLFetcher::GET : URLFetcher::POST,
|
| delegate);
|
|
|