OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_SAVE_PACKAGE_H_ | 5 #ifndef CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_H_ |
6 #define CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_H_ | 6 #define CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_H_ |
7 | 7 |
8 #include <queue> | 8 #include <queue> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
14 #include "base/hash_tables.h" | 14 #include "base/hash_tables.h" |
15 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
16 #include "chrome/browser/renderer_host/render_view_host_delegate.h" | 16 #include "chrome/browser/renderer_host/render_view_host_delegate.h" |
17 #include "chrome/browser/shell_dialogs.h" | 17 #include "chrome/browser/shell_dialogs.h" |
| 18 #include "googleurl/src/gurl.h" |
18 | 19 |
19 class SaveFileManager; | 20 class SaveFileManager; |
20 class SaveItem; | 21 class SaveItem; |
21 class SavePackage; | 22 class SavePackage; |
22 class DownloadItem; | 23 class DownloadItem; |
23 class DownloadManager; | 24 class DownloadManager; |
24 class GURL; | 25 class GURL; |
25 class MessageLoop; | 26 class MessageLoop; |
26 class PrefService; | 27 class PrefService; |
27 class Profile; | 28 class Profile; |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 const int tab_id_; | 303 const int tab_id_; |
303 | 304 |
304 // For managing select file dialogs. | 305 // For managing select file dialogs. |
305 scoped_refptr<SelectFileDialog> select_file_dialog_; | 306 scoped_refptr<SelectFileDialog> select_file_dialog_; |
306 | 307 |
307 friend class SavePackageTest; | 308 friend class SavePackageTest; |
308 DISALLOW_COPY_AND_ASSIGN(SavePackage); | 309 DISALLOW_COPY_AND_ASSIGN(SavePackage); |
309 }; | 310 }; |
310 | 311 |
311 #endif // CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_H_ | 312 #endif // CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_H_ |
OLD | NEW |