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

Unified Diff: chrome/browser/intranet_redirect_detector.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/intranet_redirect_detector.h ('k') | chrome/browser/metrics/metrics_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/intranet_redirect_detector.cc
diff --git a/chrome/browser/intranet_redirect_detector.cc b/chrome/browser/intranet_redirect_detector.cc
index 019aa074445694a6eb4e480fbad591f3f172e5e5..3dcc5bed48d35d25513f8f9d9a461d72d20eed50 100644
--- a/chrome/browser/intranet_redirect_detector.cc
+++ b/chrome/browser/intranet_redirect_detector.cc
@@ -94,12 +94,12 @@ void IntranetRedirectDetector::FinishSleep() {
}
void IntranetRedirectDetector::OnURLFetchComplete(
- const content::URLFetcher* source) {
+ const net::URLFetcher* source) {
// Delete the fetcher on this function's exit.
Fetchers::iterator fetcher = fetchers_.find(
- const_cast<content::URLFetcher*>(source));
+ const_cast<net::URLFetcher*>(source));
DCHECK(fetcher != fetchers_.end());
- scoped_ptr<content::URLFetcher> clean_up_fetcher(*fetcher);
+ scoped_ptr<net::URLFetcher> clean_up_fetcher(*fetcher);
fetchers_.erase(fetcher);
// If any two fetches result in the same domain/host, we set the redirect
« no previous file with comments | « chrome/browser/intranet_redirect_detector.h ('k') | chrome/browser/metrics/metrics_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698