Index: chrome/common/net/gaia/oauth2_revocation_fetcher.cc |
diff --git a/chrome/common/net/gaia/oauth2_revocation_fetcher.cc b/chrome/common/net/gaia/oauth2_revocation_fetcher.cc |
index afd7bd93a08041705b6ead2d2999b7c1b99d205a..f04c55be817a7226974e3ff1d4d55bf6035cdea2 100644 |
--- a/chrome/common/net/gaia/oauth2_revocation_fetcher.cc |
+++ b/chrome/common/net/gaia/oauth2_revocation_fetcher.cc |
@@ -14,15 +14,16 @@ |
#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_request_context_getter.h" |
#include "net/url_request/url_request_status.h" |
-using content::URLFetcher; |
-using content::URLFetcherDelegate; |
using net::ResponseCookies; |
+using net::URLFetcher; |
+using net::URLFetcherDelegate; |
using net::URLRequestContextGetter; |
using net::URLRequestStatus; |
@@ -53,7 +54,7 @@ static URLFetcher* CreateFetcher(URLRequestContextGetter* getter, |
const std::string& body, |
URLFetcherDelegate* delegate) { |
bool empty_body = body.empty(); |
- URLFetcher* result = URLFetcher::Create( |
+ URLFetcher* result = content::URLFetcher::Create( |
0, url, |
empty_body ? URLFetcher::GET : URLFetcher::POST, |
delegate); |