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

Unified Diff: chrome/common/net/gaia/oauth2_revocation_fetcher.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_revocation_fetcher.h ('k') | chrome/service/cloud_print/cloud_print_auth.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 207734b18a250e038056d1a0af28bcde5beb0e6a..afd7bd93a08041705b6ead2d2999b7c1b99d205a 100644
--- a/chrome/common/net/gaia/oauth2_revocation_fetcher.cc
+++ b/chrome/common/net/gaia/oauth2_revocation_fetcher.cc
@@ -105,7 +105,7 @@ void OAuth2RevocationFetcher::StartRevocation() {
fetcher_->Start(); // OnURLFetchComplete will be called.
}
-void OAuth2RevocationFetcher::EndRevocation(const URLFetcher* source) {
+void OAuth2RevocationFetcher::EndRevocation(const net::URLFetcher* source) {
CHECK_EQ(REVOCATION_STARTED, state_);
state_ = REVOCATION_DONE;
@@ -134,7 +134,8 @@ void OAuth2RevocationFetcher::OnRevocationFailure(
consumer_->OnRevocationFailure(error);
}
-void OAuth2RevocationFetcher::OnURLFetchComplete(const URLFetcher* source) {
+void OAuth2RevocationFetcher::OnURLFetchComplete(
+ const net::URLFetcher* source) {
CHECK(source);
EndRevocation(source);
}
« no previous file with comments | « chrome/common/net/gaia/oauth2_revocation_fetcher.h ('k') | chrome/service/cloud_print/cloud_print_auth.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698