Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(222)

Side by Side Diff: content/browser/download/download_create_info.cc

Issue 562603002: Move PageTransition from //content/public/common to //ui/base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/strings/stringprintf.h" 10 #include "base/strings/stringprintf.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 DownloadCreateInfo::DownloadCreateInfo(const base::Time& start_time, 14 DownloadCreateInfo::DownloadCreateInfo(const base::Time& start_time,
15 int64 total_bytes, 15 int64 total_bytes,
16 const net::BoundNetLog& bound_net_log, 16 const net::BoundNetLog& bound_net_log,
17 bool has_user_gesture, 17 bool has_user_gesture,
18 PageTransition transition_type, 18 ui::PageTransition transition_type,
19 scoped_ptr<DownloadSaveInfo> save_info) 19 scoped_ptr<DownloadSaveInfo> save_info)
20 : start_time(start_time), 20 : start_time(start_time),
21 total_bytes(total_bytes), 21 total_bytes(total_bytes),
22 download_id(DownloadItem::kInvalidId), 22 download_id(DownloadItem::kInvalidId),
23 has_user_gesture(has_user_gesture), 23 has_user_gesture(has_user_gesture),
24 transition_type(transition_type), 24 transition_type(transition_type),
25 save_info(save_info.Pass()), 25 save_info(save_info.Pass()),
26 request_bound_net_log(bound_net_log) {} 26 request_bound_net_log(bound_net_log) {}
27 27
28 DownloadCreateInfo::DownloadCreateInfo() 28 DownloadCreateInfo::DownloadCreateInfo()
29 : total_bytes(0), 29 : total_bytes(0),
30 download_id(DownloadItem::kInvalidId), 30 download_id(DownloadItem::kInvalidId),
31 has_user_gesture(false), 31 has_user_gesture(false),
32 transition_type(PAGE_TRANSITION_LINK), 32 transition_type(ui::PAGE_TRANSITION_LINK),
33 save_info(new DownloadSaveInfo()) { 33 save_info(new DownloadSaveInfo()) {
34 } 34 }
35 35
36 DownloadCreateInfo::~DownloadCreateInfo() { 36 DownloadCreateInfo::~DownloadCreateInfo() {
37 } 37 }
38 38
39 std::string DownloadCreateInfo::DebugString() const { 39 std::string DownloadCreateInfo::DebugString() const {
40 return base::StringPrintf("{" 40 return base::StringPrintf("{"
41 " download_id = %u" 41 " download_id = %u"
42 " url = \"%s\"" 42 " url = \"%s\""
43 " request_handle = %s" 43 " request_handle = %s"
44 " total_bytes = %" PRId64 44 " total_bytes = %" PRId64
45 " }", 45 " }",
46 download_id, 46 download_id,
47 url().spec().c_str(), 47 url().spec().c_str(),
48 request_handle.DebugString().c_str(), 48 request_handle.DebugString().c_str(),
49 total_bytes); 49 total_bytes);
50 } 50 }
51 51
52 const GURL& DownloadCreateInfo::url() const { 52 const GURL& DownloadCreateInfo::url() const {
53 return url_chain.empty() ? GURL::EmptyGURL() : url_chain.back(); 53 return url_chain.empty() ? GURL::EmptyGURL() : url_chain.back();
54 } 54 }
55 55
56 } // namespace content 56 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/download/download_create_info.h ('k') | content/browser/download/download_item_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698