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

Unified Diff: chrome/browser/chrome_to_mobile_service.h

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/browser/autofill/autofill_download.cc ('k') | chrome/browser/chrome_to_mobile_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_to_mobile_service.h
diff --git a/chrome/browser/chrome_to_mobile_service.h b/chrome/browser/chrome_to_mobile_service.h
index a6a9fd561b949e37e34a98ab1594312721450b79..329244ce7375a37d90e2aebfe9051dde7c78c626 100644
--- a/chrome/browser/chrome_to_mobile_service.h
+++ b/chrome/browser/chrome_to_mobile_service.h
@@ -120,7 +120,7 @@ class ChromeToMobileService : public ProfileKeyedService,
virtual void LogMetric(Metric metric);
// content::URLFetcherDelegate method.
- virtual void OnURLFetchComplete(const content::URLFetcher* source) OVERRIDE;
+ virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE;
// content::NotificationObserver method.
virtual void Observe(int type,
@@ -155,7 +155,7 @@ class ChromeToMobileService : public ProfileKeyedService,
void HandleAccountInfoResponse();
void HandleSearchResponse();
- void HandleSubmitResponse(const content::URLFetcher* source);
+ void HandleSubmitResponse(const net::URLFetcher* source);
base::WeakPtrFactory<ChromeToMobileService> weak_ptr_factory_;
@@ -175,7 +175,7 @@ class ChromeToMobileService : public ProfileKeyedService,
std::set<FilePath> snapshots_;
// Map URLFetchers to observers for reporting OnSendComplete.
- typedef std::map<const content::URLFetcher*, base::WeakPtr<Observer> >
+ typedef std::map<const net::URLFetcher*, base::WeakPtr<Observer> >
RequestObserverMap;
RequestObserverMap request_observer_map_;
« no previous file with comments | « chrome/browser/autofill/autofill_download.cc ('k') | chrome/browser/chrome_to_mobile_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698