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

Unified Diff: chrome/browser/chrome_to_mobile_service.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/browser/chrome_to_mobile_service.h ('k') | chrome/browser/chromeos/customization_document.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_to_mobile_service.cc
diff --git a/chrome/browser/chrome_to_mobile_service.cc b/chrome/browser/chrome_to_mobile_service.cc
index d5dfaca03a4848f7c132dedb5d365958893d0c06..d6bab02ebe48ef6d744eebfea68dce1ad33ce366 100644
--- a/chrome/browser/chrome_to_mobile_service.cc
+++ b/chrome/browser/chrome_to_mobile_service.cc
@@ -285,7 +285,7 @@ void ChromeToMobileService::LogMetric(Metric metric) {
}
void ChromeToMobileService::OnURLFetchComplete(
- const content::URLFetcher* source) {
+ const net::URLFetcher* source) {
if (source == account_info_request_.get())
HandleAccountInfoResponse();
else if (source == search_request_.get())
@@ -481,7 +481,7 @@ void ChromeToMobileService::HandleSearchResponse() {
}
void ChromeToMobileService::HandleSubmitResponse(
- const content::URLFetcher* source) {
+ const net::URLFetcher* source) {
// Get the observer for this response; bail if there is none or it is NULL.
RequestObserverMap::iterator i = request_observer_map_.find(source);
if (i == request_observer_map_.end())
« no previous file with comments | « chrome/browser/chrome_to_mobile_service.h ('k') | chrome/browser/chromeos/customization_document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698