| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ | 5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ |
| 6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ | 6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 // allowing mocking of ResourceDispatcherHost in unit tests. | 56 // allowing mocking of ResourceDispatcherHost in unit tests. |
| 57 DownloadRequestHandle(); | 57 DownloadRequestHandle(); |
| 58 | 58 |
| 59 // Note that |rdh| is required to be non-null. | 59 // Note that |rdh| is required to be non-null. |
| 60 DownloadRequestHandle(const base::WeakPtr<DownloadResourceHandler>& handler, | 60 DownloadRequestHandle(const base::WeakPtr<DownloadResourceHandler>& handler, |
| 61 int child_id, | 61 int child_id, |
| 62 int render_view_id, | 62 int render_view_id, |
| 63 int request_id); | 63 int request_id); |
| 64 | 64 |
| 65 // Implement DownloadRequestHandleInterface interface. | 65 // Implement DownloadRequestHandleInterface interface. |
| 66 virtual WebContents* GetWebContents() const OVERRIDE; | 66 virtual WebContents* GetWebContents() const override; |
| 67 virtual DownloadManager* GetDownloadManager() const OVERRIDE; | 67 virtual DownloadManager* GetDownloadManager() const override; |
| 68 virtual void PauseRequest() const OVERRIDE; | 68 virtual void PauseRequest() const override; |
| 69 virtual void ResumeRequest() const OVERRIDE; | 69 virtual void ResumeRequest() const override; |
| 70 virtual void CancelRequest() const OVERRIDE; | 70 virtual void CancelRequest() const override; |
| 71 virtual std::string DebugString() const OVERRIDE; | 71 virtual std::string DebugString() const override; |
| 72 | 72 |
| 73 private: | 73 private: |
| 74 base::WeakPtr<DownloadResourceHandler> handler_; | 74 base::WeakPtr<DownloadResourceHandler> handler_; |
| 75 | 75 |
| 76 // The ID of the child process that started the download. | 76 // The ID of the child process that started the download. |
| 77 int child_id_; | 77 int child_id_; |
| 78 | 78 |
| 79 // The ID of the render view that started the download. | 79 // The ID of the render view that started the download. |
| 80 int render_view_id_; | 80 int render_view_id_; |
| 81 | 81 |
| 82 // The ID associated with the request used for the download. | 82 // The ID associated with the request used for the download. |
| 83 int request_id_; | 83 int request_id_; |
| 84 }; | 84 }; |
| 85 | 85 |
| 86 } // namespace content | 86 } // namespace content |
| 87 | 87 |
| 88 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ | 88 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ |
| OLD | NEW |