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

Unified Diff: chrome/common/net/gaia/oauth2_mint_token_flow.cc

Issue 10386063: Move URLFetcherDelegate to net/ and split URLFetcher between net/ and content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to head, fix win component build 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
« no previous file with comments | « chrome/common/net/gaia/oauth2_mint_token_flow.h ('k') | chrome/common/net/gaia/oauth2_revocation_fetcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/net/gaia/oauth2_mint_token_flow.cc
diff --git a/chrome/common/net/gaia/oauth2_mint_token_flow.cc b/chrome/common/net/gaia/oauth2_mint_token_flow.cc
index c39bbaa74d5dcb536c84a470f67ad98ee59c4b6a..0232b92d379ce8fb4fc830e9b2502123eb0dc644 100644
--- a/chrome/common/net/gaia/oauth2_mint_token_flow.cc
+++ b/chrome/common/net/gaia/oauth2_mint_token_flow.cc
@@ -179,7 +179,7 @@ std::string OAuth2MintTokenFlow::CreateApiCallBody() {
}
void OAuth2MintTokenFlow::ProcessApiCallSuccess(
- const content::URLFetcher* source) {
+ const net::URLFetcher* source) {
// TODO(munjal): Change error code paths in this method to report an
// internal error.
std::string response_body;
@@ -213,7 +213,7 @@ void OAuth2MintTokenFlow::ProcessApiCallSuccess(
}
void OAuth2MintTokenFlow::ProcessApiCallFailure(
- const content::URLFetcher* source) {
+ const net::URLFetcher* source) {
ReportFailure(CreateAuthError(source->GetStatus()));
}
void OAuth2MintTokenFlow::ProcessNewAccessToken(
« no previous file with comments | « chrome/common/net/gaia/oauth2_mint_token_flow.h ('k') | chrome/common/net/gaia/oauth2_revocation_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698