| Index: content/browser/download/download_request_core.h
|
| diff --git a/content/browser/download/download_request_core.h b/content/browser/download/download_request_core.h
|
| index 646911641b571e1589aeb174462fad51d43cd020..84eb2e0a935441a361727650040a137f56038cc0 100644
|
| --- a/content/browser/download/download_request_core.h
|
| +++ b/content/browser/download/download_request_core.h
|
| @@ -19,10 +19,6 @@
|
| #include "content/public/browser/download_save_info.h"
|
| #include "content/public/browser/download_url_parameters.h"
|
|
|
| -namespace device {
|
| -class PowerSaveBlocker;
|
| -} // namespace device
|
| -
|
| namespace net {
|
| class HttpResponseHeaders;
|
| class URLRequest;
|
| @@ -33,6 +29,7 @@
|
| class DownloadManagerImpl;
|
| class ByteStreamReader;
|
| class ByteStreamWriter;
|
| +class PowerSaveBlocker;
|
| struct DownloadCreateInfo;
|
|
|
| // This class encapsulates the core logic for reading data from a URLRequest and
|
| @@ -143,7 +140,7 @@
|
| // Keeps the system from sleeping while this is alive. If the
|
| // system enters power saving mode while a request is alive, it can cause the
|
| // request to fail and the associated download will be interrupted.
|
| - std::unique_ptr<device::PowerSaveBlocker> power_save_blocker_;
|
| + std::unique_ptr<PowerSaveBlocker> power_save_blocker_;
|
|
|
| // The following are used to collect stats.
|
| base::TimeTicks download_start_time_;
|
|
|