| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ | 5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ |
| 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ | 6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 class DownloadManager; | 11 class DownloadManager; |
| 12 class ResourceDispatcherHost; | 12 class ResourceDispatcherHost; |
| 13 class TabContents; | 13 class TabContents; |
| 14 | 14 |
| 15 // A handle used by the download system for operations on the URLRequest | 15 // A handle used by the download system for operations on the URLRequest |
| 16 // or objects conditional on it (e.g. TabContents). | 16 // or objects conditional on it (e.g. TabContents). |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 // The ID of the child process that started the download. | 53 // The ID of the child process that started the download. |
| 54 int child_id_; | 54 int child_id_; |
| 55 | 55 |
| 56 // The ID of the render view that started the download. | 56 // The ID of the render view that started the download. |
| 57 int render_view_id_; | 57 int render_view_id_; |
| 58 | 58 |
| 59 // The ID associated with the request used for the download. | 59 // The ID associated with the request used for the download. |
| 60 int request_id_; | 60 int request_id_; |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ | 63 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ |
| OLD | NEW |