| 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 84eb2e0a935441a361727650040a137f56038cc0..646911641b571e1589aeb174462fad51d43cd020 100644
 | 
| --- a/content/browser/download/download_request_core.h
 | 
| +++ b/content/browser/download/download_request_core.h
 | 
| @@ -19,6 +19,10 @@
 | 
|  #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;
 | 
| @@ -29,7 +33,6 @@ namespace content {
 | 
|  class DownloadManagerImpl;
 | 
|  class ByteStreamReader;
 | 
|  class ByteStreamWriter;
 | 
| -class PowerSaveBlocker;
 | 
|  struct DownloadCreateInfo;
 | 
|  
 | 
|  // This class encapsulates the core logic for reading data from a URLRequest and
 | 
| @@ -140,7 +143,7 @@ class CONTENT_EXPORT DownloadRequestCore
 | 
|    // 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<PowerSaveBlocker> power_save_blocker_;
 | 
| +  std::unique_ptr<device::PowerSaveBlocker> power_save_blocker_;
 | 
|  
 | 
|    // The following are used to collect stats.
 | 
|    base::TimeTicks download_start_time_;
 | 
| 
 |