Index: chrome/service/gaia/service_gaia_authenticator.cc |
diff --git a/chrome/service/gaia/service_gaia_authenticator.cc b/chrome/service/gaia/service_gaia_authenticator.cc |
index a7a2da3762ffe132c9f00cfb327f011da62e39d7..8f0bb7e38ee2588c7ebb83ef264758c767fa04b2 100644 |
--- a/chrome/service/gaia/service_gaia_authenticator.cc |
+++ b/chrome/service/gaia/service_gaia_authenticator.cc |
@@ -78,8 +78,8 @@ ServiceGaiaAuthenticator::~ServiceGaiaAuthenticator() {} |
void ServiceGaiaAuthenticator::DoPost(const GURL& post_url, |
const std::string& post_body) { |
DCHECK(io_message_loop_proxy_->BelongsToCurrentThread()); |
- content::URLFetcher* request = content::URLFetcher::Create( |
- post_url, content::URLFetcher::POST, this); |
+ net::URLFetcher* request = content::URLFetcher::Create( |
+ post_url, net::URLFetcher::POST, this); |
request->SetRequestContext( |
g_service_process->GetServiceURLRequestContextGetter()); |
request->SetUploadData("application/x-www-form-urlencoded", post_body); |