| Index: chrome/browser/policy/device_management_service.h
|
| diff --git a/chrome/browser/policy/device_management_service.h b/chrome/browser/policy/device_management_service.h
|
| index 112e4b193e68549bc34a50072559e05f9cab4859..e8df7b2faea99387f21d118a8f31e1aa2ac9eebf 100644
|
| --- a/chrome/browser/policy/device_management_service.h
|
| +++ b/chrome/browser/policy/device_management_service.h
|
| @@ -18,7 +18,7 @@
|
| #include "base/memory/weak_ptr.h"
|
| #include "chrome/browser/policy/cloud_policy_constants.h"
|
| #include "chrome/browser/policy/proto/device_management_backend.pb.h"
|
| -#include "content/public/common/url_fetcher_delegate.h"
|
| +#include "net/url_request/url_fetcher_delegate.h"
|
|
|
| namespace net {
|
| class URLRequestContextGetter;
|
| @@ -86,7 +86,7 @@ class DeviceManagementRequestJob {
|
| // communication with the device management server. It creates the backends
|
| // objects that the device management policy provider and friends use to issue
|
| // requests.
|
| -class DeviceManagementService : public content::URLFetcherDelegate {
|
| +class DeviceManagementService : public net::URLFetcherDelegate {
|
| public:
|
| explicit DeviceManagementService(const std::string& server_url);
|
| virtual ~DeviceManagementService();
|
| @@ -110,7 +110,7 @@ class DeviceManagementService : public content::URLFetcherDelegate {
|
|
|
| friend class DeviceManagementRequestJobImpl;
|
|
|
| - // content::URLFetcherDelegate override.
|
| + // net::URLFetcherDelegate override.
|
| virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE;
|
|
|
| // Does the actual initialization using the request context specified for
|
|
|