| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/task/cancelable_task_tracker.h" | 14 #include "base/task/cancelable_task_tracker.h" |
| 15 #include "build/build_config.h" | 15 #include "build/build_config.h" |
| 16 #include "chrome/browser/download/download_path_reservation_tracker.h" | 16 #include "chrome/browser/download/download_path_reservation_tracker.h" |
| 17 #include "chrome/browser/download/download_target_determiner_delegate.h" | 17 #include "chrome/browser/download/download_target_determiner_delegate.h" |
| 18 #include "chrome/browser/download/download_target_info.h" | 18 #include "chrome/browser/download/download_target_info.h" |
| 19 #include "chrome/common/safe_browsing/download_file_types.pb.h" | 19 #include "chrome/common/safe_browsing/download_file_types.pb.h" |
| 20 #include "content/public/browser/download_danger_type.h" | 20 #include "content/public/browser/download_danger_type.h" |
| 21 #include "content/public/browser/download_item.h" | 21 #include "content/public/browser/download_item.h" |
| 22 #include "content/public/browser/download_manager_delegate.h" | 22 #include "content/public/browser/download_manager_delegate.h" |
| 23 #include "ppapi/features/features.h" | 23 #include "ppapi/features/features.h" |
| 24 | 24 |
| 25 class ChromeDownloadManagerDelegate; | |
| 26 class Profile; | 25 class Profile; |
| 27 class DownloadPrefs; | 26 class DownloadPrefs; |
| 28 | 27 |
| 29 namespace content { | 28 namespace content { |
| 30 enum DownloadDangerType; | 29 enum DownloadDangerType; |
| 31 } | 30 } |
| 32 | 31 |
| 33 // Determines the target of the download. | 32 // Determines the target of the download. |
| 34 // | 33 // |
| 35 // Terminology: | 34 // Terminology: |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 DownloadTargetDeterminerDelegate* delegate_; | 325 DownloadTargetDeterminerDelegate* delegate_; |
| 327 CompletionCallback completion_callback_; | 326 CompletionCallback completion_callback_; |
| 328 base::CancelableTaskTracker history_tracker_; | 327 base::CancelableTaskTracker history_tracker_; |
| 329 | 328 |
| 330 base::WeakPtrFactory<DownloadTargetDeterminer> weak_ptr_factory_; | 329 base::WeakPtrFactory<DownloadTargetDeterminer> weak_ptr_factory_; |
| 331 | 330 |
| 332 DISALLOW_COPY_AND_ASSIGN(DownloadTargetDeterminer); | 331 DISALLOW_COPY_AND_ASSIGN(DownloadTargetDeterminer); |
| 333 }; | 332 }; |
| 334 | 333 |
| 335 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_ | 334 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_ |
| OLD | NEW |