Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Unified Diff: chrome/service/gaia/service_gaia_authenticator.cc

Issue 10412050: Change most content::URLFetcher references to net::URLFetcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ChromeOS, address comments Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
« no previous file with comments | « chrome/service/cloud_print/cloud_print_url_fetcher.cc ('k') | content/browser/geolocation/network_location_request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698