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

Unified Diff: chrome/browser/google/google_url_tracker.h

Issue 8375039: Create a content::UrlFetcher interface that lives in content/public/common and convert users to i... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 9 years, 2 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
Index: chrome/browser/google/google_url_tracker.h
===================================================================
--- chrome/browser/google/google_url_tracker.h (revision 107061)
+++ chrome/browser/google/google_url_tracker.h (working copy)
@@ -107,7 +107,7 @@
void StartFetchIfDesirable();
// content::URLFetcherDelegate
- virtual void OnURLFetchComplete(const URLFetcher *source);
+ virtual void OnURLFetchComplete(const content::URLFetcher* source);
// content::NotificationObserver
virtual void Observe(int type,
@@ -132,7 +132,7 @@
GURL google_url_;
GURL fetched_google_url_;
base::WeakPtrFactory<GoogleURLTracker> weak_ptr_factory_;
- scoped_ptr<URLFetcher> fetcher_;
+ scoped_ptr<content::URLFetcher> fetcher_;
int fetcher_id_;
bool queue_wakeup_task_;
bool in_startup_sleep_; // True if we're in the five-second "no fetching"

Powered by Google App Engine
This is Rietveld 408576698