| 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_MANAGER_DELEGATE_H_ | 5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_DELEGATE_H_ | 6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_DELEGATE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 | 11 |
| 12 class FilePath; | 12 class FilePath; |
| 13 class TabContents; | 13 class TabContents; |
| 14 class SavePackage; | 14 class SavePackage; |
| 15 | 15 |
| 16 // Browser's download manager: manages all downloads and destination view. | 16 // Browser's download manager: manages all downloads and destination view. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 47 const FilePath& suggested_path, | 47 const FilePath& suggested_path, |
| 48 bool can_save_as_complete) = 0; | 48 bool can_save_as_complete) = 0; |
| 49 | 49 |
| 50 protected: | 50 protected: |
| 51 DownloadManagerDelegate() {} | 51 DownloadManagerDelegate() {} |
| 52 virtual ~DownloadManagerDelegate() {} | 52 virtual ~DownloadManagerDelegate() {} |
| 53 | 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(DownloadManagerDelegate); | 54 DISALLOW_COPY_AND_ASSIGN(DownloadManagerDelegate); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_DELEGATE_H_ | 57 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_DELEGATE_H_ |
| OLD | NEW |