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_create_info.h" | 5 #include "content/browser/download/download_create_info.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/format_macros.h" | 9 #include "base/format_macros.h" |
10 #include "base/stringprintf.h" | 10 #include "base/stringprintf.h" |
11 | 11 |
12 DownloadCreateInfo::DownloadCreateInfo(const FilePath& path, | 12 DownloadCreateInfo::DownloadCreateInfo(const FilePath& path, |
13 const GURL& url, | 13 const GURL& url, |
14 const base::Time& start_time, | 14 const base::Time& start_time, |
15 int64 received_bytes, | 15 int64 received_bytes, |
16 int64 total_bytes, | 16 int64 total_bytes, |
17 int32 state, | 17 int32 state, |
18 int32 download_id, | 18 const DownloadId& download_id, |
19 bool has_user_gesture, | 19 bool has_user_gesture, |
20 content::PageTransition transition_type) | 20 content::PageTransition transition_type) |
21 : path(path), | 21 : path(path), |
22 url_chain(1, url), | 22 url_chain(1, url), |
23 path_uniquifier(0), | 23 path_uniquifier(0), |
24 start_time(start_time), | 24 start_time(start_time), |
25 received_bytes(received_bytes), | 25 received_bytes(received_bytes), |
26 total_bytes(total_bytes), | 26 total_bytes(total_bytes), |
27 state(state), | 27 state(state), |
28 download_id(download_id), | 28 download_id(download_id), |
29 has_user_gesture(has_user_gesture), | 29 has_user_gesture(has_user_gesture), |
30 transition_type(transition_type), | 30 transition_type(transition_type), |
31 db_handle(0), | 31 db_handle(0), |
32 prompt_user_for_save_location(false) { | 32 prompt_user_for_save_location(false) { |
33 } | 33 } |
34 | 34 |
35 DownloadCreateInfo::DownloadCreateInfo() | 35 DownloadCreateInfo::DownloadCreateInfo() |
36 : path_uniquifier(0), | 36 : path_uniquifier(0), |
37 received_bytes(0), | 37 received_bytes(0), |
38 total_bytes(0), | 38 total_bytes(0), |
39 state(-1), | 39 state(-1), |
40 download_id(-1), | 40 download_id(DownloadId::Invalid()), |
41 has_user_gesture(false), | 41 has_user_gesture(false), |
42 transition_type(content::PAGE_TRANSITION_LINK), | 42 transition_type(content::PAGE_TRANSITION_LINK), |
43 db_handle(0), | 43 db_handle(0), |
44 prompt_user_for_save_location(false) { | 44 prompt_user_for_save_location(false) { |
45 } | 45 } |
46 | 46 |
47 DownloadCreateInfo::~DownloadCreateInfo() { | 47 DownloadCreateInfo::~DownloadCreateInfo() { |
48 } | 48 } |
49 | 49 |
50 std::string DownloadCreateInfo::DebugString() const { | 50 std::string DownloadCreateInfo::DebugString() const { |
51 return base::StringPrintf("{" | 51 return base::StringPrintf("{" |
52 " download_id = %d" | 52 " download_id = %s" |
53 " url = \"%s\"" | 53 " url = \"%s\"" |
54 " path = \"%" PRFilePath "\"" | 54 " path = \"%" PRFilePath "\"" |
55 " received_bytes = %" PRId64 | 55 " received_bytes = %" PRId64 |
56 " total_bytes = %" PRId64 | 56 " total_bytes = %" PRId64 |
57 " prompt_user_for_save_location = %c" | 57 " prompt_user_for_save_location = %c" |
58 " }", | 58 " }", |
59 download_id, | 59 download_id.DebugString().c_str(), |
60 url().spec().c_str(), | 60 url().spec().c_str(), |
61 path.value().c_str(), | 61 path.value().c_str(), |
62 received_bytes, | 62 received_bytes, |
63 total_bytes, | 63 total_bytes, |
64 prompt_user_for_save_location ? 'T' : 'F'); | 64 prompt_user_for_save_location ? 'T' : 'F'); |
65 } | 65 } |
66 | 66 |
67 const GURL& DownloadCreateInfo::url() const { | 67 const GURL& DownloadCreateInfo::url() const { |
68 return url_chain.empty() ? GURL::EmptyGURL() : url_chain.back(); | 68 return url_chain.empty() ? GURL::EmptyGURL() : url_chain.back(); |
69 } | 69 } |
OLD | NEW |