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

Unified Diff: chrome/browser/extensions/app_notify_channel_setup.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: review comments 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/extensions/app_notify_channel_setup.h
===================================================================
--- chrome/browser/extensions/app_notify_channel_setup.h (revision 107061)
+++ chrome/browser/extensions/app_notify_channel_setup.h (working copy)
@@ -44,7 +44,7 @@
protected:
// content::URLFetcherDelegate.
- virtual void OnURLFetchComplete(const URLFetcher* source) OVERRIDE;
+ virtual void OnURLFetchComplete(const content::URLFetcher* source) OVERRIDE;
private:
friend class base::RefCountedThreadSafe<AppNotifyChannelSetup>;
@@ -59,7 +59,7 @@
int return_route_id_;
int callback_id_;
base::WeakPtr<Delegate> delegate_;
- scoped_ptr<URLFetcher> url_fetcher_;
+ scoped_ptr<content::URLFetcher> url_fetcher_;
DISALLOW_COPY_AND_ASSIGN(AppNotifyChannelSetup);
};

Powered by Google App Engine
This is Rietveld 408576698