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

Unified Diff: chrome/browser/policy/device_management_service.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/policy/device_management_service.h
===================================================================
--- chrome/browser/policy/device_management_service.h (revision 107061)
+++ chrome/browser/policy/device_management_service.h (working copy)
@@ -49,7 +49,7 @@
virtual GURL GetURL(const std::string& server_url) = 0;
// Configures the fetcher, setting up payload and headers.
- virtual void ConfigureRequest(URLFetcher* fetcher) = 0;
+ virtual void ConfigureRequest(content::URLFetcher* fetcher) = 0;
};
explicit DeviceManagementService(const std::string& server_url);
@@ -80,11 +80,12 @@
virtual void StartJob(DeviceManagementJob* job, bool bypass_proxy);
private:
- typedef std::map<const URLFetcher*, DeviceManagementJob*> JobFetcherMap;
+ typedef std::map<const content::URLFetcher*, DeviceManagementJob*>
+ JobFetcherMap;
typedef std::deque<DeviceManagementJob*> JobQueue;
// content::URLFetcherDelegate override.
- virtual void OnURLFetchComplete(const URLFetcher* source) OVERRIDE;
+ virtual void OnURLFetchComplete(const content::URLFetcher* source) OVERRIDE;
// Does the actual initialization using the request context specified for
// |PrepareInitialization|. This will also fire any pending network requests.
« no previous file with comments | « chrome/browser/policy/device_management_backend_impl.cc ('k') | chrome/browser/policy/device_management_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698