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

Unified Diff: chrome/browser/extensions/extension_updater.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/extension_updater.h
===================================================================
--- chrome/browser/extensions/extension_updater.h (revision 107061)
+++ chrome/browser/extensions/extension_updater.h (working copy)
@@ -255,7 +255,7 @@
base::TimeDelta DetermineFirstCheckDelay();
// content::URLFetcherDelegate interface.
- virtual void OnURLFetchComplete(const URLFetcher* source) OVERRIDE;
+ virtual void OnURLFetchComplete(const content::URLFetcher* source) OVERRIDE;
// These do the actual work when a URL fetch completes.
virtual void OnManifestFetchComplete(const GURL& url,
@@ -263,7 +263,7 @@
int response_code,
const std::string& data);
- virtual void OnCRXFetchComplete(const URLFetcher* source,
+ virtual void OnCRXFetchComplete(const content::URLFetcher* source,
const GURL& url,
const net::URLRequestStatus& status,
int response_code);
@@ -346,8 +346,8 @@
base::WeakPtrFactory<ExtensionUpdater> weak_ptr_factory_;
// Outstanding url fetch requests for manifests and updates.
- scoped_ptr<URLFetcher> manifest_fetcher_;
- scoped_ptr<URLFetcher> extension_fetcher_;
+ scoped_ptr<content::URLFetcher> manifest_fetcher_;
+ scoped_ptr<content::URLFetcher> extension_fetcher_;
// Pending manifests and extensions to be fetched when the appropriate fetcher
// is available.
« no previous file with comments | « chrome/browser/extensions/extension_management_browsertest.cc ('k') | chrome/browser/extensions/extension_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698