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 #include "content/browser/download/download_state_info.h" | 5 #include "content/browser/download/download_state_info.h" |
6 | 6 |
7 #include "content/browser/download/download_item.h" | 7 #include "content/browser/download/download_item.h" |
8 | 8 |
9 DownloadStateInfo::DownloadStateInfo() | 9 DownloadStateInfo::DownloadStateInfo() |
10 : path_uniquifier(0), | 10 : path_uniquifier(0), |
11 has_user_gesture(false), | 11 has_user_gesture(false), |
12 transition_type(PageTransition::LINK), | 12 transition_type(content::PAGE_TRANSITION_LINK), |
13 prompt_user_for_save_location(false), | 13 prompt_user_for_save_location(false), |
14 is_dangerous_file(false), | 14 is_dangerous_file(false), |
15 is_dangerous_url(false) { | 15 is_dangerous_url(false) { |
16 } | 16 } |
17 | 17 |
18 DownloadStateInfo::DownloadStateInfo( | 18 DownloadStateInfo::DownloadStateInfo( |
19 bool has_user_gesture, | 19 bool has_user_gesture, |
20 bool prompt_user_for_save_location) | 20 bool prompt_user_for_save_location) |
21 : path_uniquifier(0), | 21 : path_uniquifier(0), |
22 has_user_gesture(has_user_gesture), | 22 has_user_gesture(has_user_gesture), |
23 transition_type(PageTransition::LINK), | 23 transition_type(content::PAGE_TRANSITION_LINK), |
24 prompt_user_for_save_location(prompt_user_for_save_location), | 24 prompt_user_for_save_location(prompt_user_for_save_location), |
25 is_dangerous_file(false), | 25 is_dangerous_file(false), |
26 is_dangerous_url(false) { | 26 is_dangerous_url(false) { |
27 } | 27 } |
28 | 28 |
29 DownloadStateInfo::DownloadStateInfo( | 29 DownloadStateInfo::DownloadStateInfo( |
30 const FilePath& target, | 30 const FilePath& target, |
31 const FilePath& forced_name, | 31 const FilePath& forced_name, |
32 bool has_user_gesture, | 32 bool has_user_gesture, |
33 PageTransition::Type transition_type, | 33 content::PageTransition transition_type, |
34 bool prompt_user_for_save_location, | 34 bool prompt_user_for_save_location, |
35 int uniquifier, | 35 int uniquifier, |
36 bool dangerous_file, | 36 bool dangerous_file, |
37 bool dangerous_url) | 37 bool dangerous_url) |
38 : target_name(target), | 38 : target_name(target), |
39 path_uniquifier(uniquifier), | 39 path_uniquifier(uniquifier), |
40 has_user_gesture(has_user_gesture), | 40 has_user_gesture(has_user_gesture), |
41 transition_type(transition_type), | 41 transition_type(transition_type), |
42 prompt_user_for_save_location(prompt_user_for_save_location), | 42 prompt_user_for_save_location(prompt_user_for_save_location), |
43 is_dangerous_file(dangerous_file), | 43 is_dangerous_file(dangerous_file), |
44 is_dangerous_url(dangerous_url), | 44 is_dangerous_url(dangerous_url), |
45 force_file_name(forced_name) { | 45 force_file_name(forced_name) { |
46 } | 46 } |
47 | 47 |
48 bool DownloadStateInfo::IsDangerous() const { | 48 bool DownloadStateInfo::IsDangerous() const { |
49 return is_dangerous_url || is_dangerous_file; | 49 return is_dangerous_url || is_dangerous_file; |
50 } | 50 } |
OLD | NEW |