| 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 int32 download_id, |
| 19 bool has_user_gesture) | 19 bool has_user_gesture, |
| 20 PageTransition::Type transition_type) |
| 20 : path(path), | 21 : path(path), |
| 21 url_chain(1, url), | 22 url_chain(1, url), |
| 22 path_uniquifier(0), | 23 path_uniquifier(0), |
| 23 start_time(start_time), | 24 start_time(start_time), |
| 24 received_bytes(received_bytes), | 25 received_bytes(received_bytes), |
| 25 total_bytes(total_bytes), | 26 total_bytes(total_bytes), |
| 26 state(state), | 27 state(state), |
| 27 download_id(download_id), | 28 download_id(download_id), |
| 28 has_user_gesture(has_user_gesture), | 29 has_user_gesture(has_user_gesture), |
| 30 transition_type(transition_type), |
| 29 db_handle(0), | 31 db_handle(0), |
| 30 prompt_user_for_save_location(false), | 32 prompt_user_for_save_location(false), |
| 31 is_extension_install(false) { | 33 is_extension_install(false) { |
| 32 } | 34 } |
| 33 | 35 |
| 34 DownloadCreateInfo::DownloadCreateInfo() | 36 DownloadCreateInfo::DownloadCreateInfo() |
| 35 : path_uniquifier(0), | 37 : path_uniquifier(0), |
| 36 received_bytes(0), | 38 received_bytes(0), |
| 37 total_bytes(0), | 39 total_bytes(0), |
| 38 state(-1), | 40 state(-1), |
| 39 download_id(-1), | 41 download_id(-1), |
| 40 has_user_gesture(false), | 42 has_user_gesture(false), |
| 43 transition_type(PageTransition::LINK), |
| 41 db_handle(0), | 44 db_handle(0), |
| 42 prompt_user_for_save_location(false), | 45 prompt_user_for_save_location(false), |
| 43 is_extension_install(false) { | 46 is_extension_install(false) { |
| 44 } | 47 } |
| 45 | 48 |
| 46 DownloadCreateInfo::~DownloadCreateInfo() { | 49 DownloadCreateInfo::~DownloadCreateInfo() { |
| 47 } | 50 } |
| 48 | 51 |
| 49 std::string DownloadCreateInfo::DebugString() const { | 52 std::string DownloadCreateInfo::DebugString() const { |
| 50 return base::StringPrintf("{" | 53 return base::StringPrintf("{" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 61 path.value().c_str(), | 64 path.value().c_str(), |
| 62 received_bytes, | 65 received_bytes, |
| 63 total_bytes, | 66 total_bytes, |
| 64 request_handle.DebugString().c_str(), | 67 request_handle.DebugString().c_str(), |
| 65 prompt_user_for_save_location ? 'T' : 'F'); | 68 prompt_user_for_save_location ? 'T' : 'F'); |
| 66 } | 69 } |
| 67 | 70 |
| 68 const GURL& DownloadCreateInfo::url() const { | 71 const GURL& DownloadCreateInfo::url() const { |
| 69 return url_chain.empty() ? GURL::EmptyGURL() : url_chain.back(); | 72 return url_chain.empty() ? GURL::EmptyGURL() : url_chain.back(); |
| 70 } | 73 } |
| OLD | NEW |