summaryrefslogtreecommitdiffstats
path: root/chrome/browser/net/gaia/gaia_oauth_fetcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/net/gaia/gaia_oauth_fetcher.cc')
-rw-r--r--chrome/browser/net/gaia/gaia_oauth_fetcher.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/net/gaia/gaia_oauth_fetcher.cc b/chrome/browser/net/gaia/gaia_oauth_fetcher.cc
index 43713aa..bae1236 100644
--- a/chrome/browser/net/gaia/gaia_oauth_fetcher.cc
+++ b/chrome/browser/net/gaia/gaia_oauth_fetcher.cc
@@ -26,10 +26,10 @@
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_source.h"
#include "content/public/common/referrer.h"
-#include "content/public/common/url_fetcher.h"
#include "grit/chromium_strings.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"
#include "ui/base/l10n/l10n_util.h"
@@ -68,7 +68,7 @@ net::URLFetcher* GaiaOAuthFetcher::CreateGaiaFetcher(
bool send_cookies,
net::URLFetcherDelegate* delegate) {
bool empty_body = body.empty();
- net::URLFetcher* result = content::URLFetcher::Create(
+ net::URLFetcher* result = net::URLFetcher::Create(
0, gaia_gurl,
empty_body ? net::URLFetcher::GET : net::URLFetcher::POST,
delegate);