| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_TARGET_DETERMINER_H_ | 5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_ |
| 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_ | 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/task/cancelable_task_tracker.h" | |
| 13 #include "chrome/browser/common/cancelable_request.h" | 12 #include "chrome/browser/common/cancelable_request.h" |
| 14 #include "chrome/browser/download/download_path_reservation_tracker.h" | 13 #include "chrome/browser/download/download_path_reservation_tracker.h" |
| 15 #include "chrome/browser/download/download_target_determiner_delegate.h" | 14 #include "chrome/browser/download/download_target_determiner_delegate.h" |
| 16 #include "chrome/browser/download/download_target_info.h" | 15 #include "chrome/browser/download/download_target_info.h" |
| 17 #include "content/public/browser/download_danger_type.h" | 16 #include "content/public/browser/download_danger_type.h" |
| 18 #include "content/public/browser/download_item.h" | 17 #include "content/public/browser/download_item.h" |
| 19 #include "content/public/browser/download_manager_delegate.h" | 18 #include "content/public/browser/download_manager_delegate.h" |
| 20 | 19 |
| 21 class ChromeDownloadManagerDelegate; | 20 class ChromeDownloadManagerDelegate; |
| 22 class Profile; | 21 class Profile; |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 base::FilePath local_path_; | 286 base::FilePath local_path_; |
| 288 base::FilePath intermediate_path_; | 287 base::FilePath intermediate_path_; |
| 289 std::string mime_type_; | 288 std::string mime_type_; |
| 290 bool is_filetype_handled_safely_; | 289 bool is_filetype_handled_safely_; |
| 291 | 290 |
| 292 content::DownloadItem* download_; | 291 content::DownloadItem* download_; |
| 293 const bool is_resumption_; | 292 const bool is_resumption_; |
| 294 DownloadPrefs* download_prefs_; | 293 DownloadPrefs* download_prefs_; |
| 295 DownloadTargetDeterminerDelegate* delegate_; | 294 DownloadTargetDeterminerDelegate* delegate_; |
| 296 CompletionCallback completion_callback_; | 295 CompletionCallback completion_callback_; |
| 297 base::CancelableTaskTracker history_tracker_; | 296 CancelableRequestConsumer history_consumer_; |
| 298 | 297 |
| 299 base::WeakPtrFactory<DownloadTargetDeterminer> weak_ptr_factory_; | 298 base::WeakPtrFactory<DownloadTargetDeterminer> weak_ptr_factory_; |
| 300 | 299 |
| 301 DISALLOW_COPY_AND_ASSIGN(DownloadTargetDeterminer); | 300 DISALLOW_COPY_AND_ASSIGN(DownloadTargetDeterminer); |
| 302 }; | 301 }; |
| 303 | 302 |
| 304 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_ | 303 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_ |
| OLD | NEW |