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
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_CREATE_INFO_H_
6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_CREATE_INFO_H_
11 #include "base/basictypes.h"
12 #include "base/files/file_path.h"
13 #include "base/time/time.h"
14 #include "content/browser/download/download_file.h"
15 #include "content/browser/download/download_request_handle.h"
16 #include "content/common/content_export.h"
17 #include "content/public/browser/download_save_info.h"
18 #include "net/log/net_log.h"
19 #include "ui/base/page_transition_types.h"
24 // Used for informing the download manager of a new download, since we don't
25 // want to pass |DownloadItem|s between threads.
26 struct CONTENT_EXPORT DownloadCreateInfo
{
27 DownloadCreateInfo(const base::Time
& start_time
,
29 const net::BoundNetLog
& bound_net_log
,
30 bool has_user_gesture
,
31 ui::PageTransition transition_type
,
32 scoped_ptr
<DownloadSaveInfo
> save_info
);
34 ~DownloadCreateInfo();
36 std::string
DebugString() const;
38 // The URL from which we are downloading. This is the final URL after any
39 // redirection by the server for |url_chain|.
40 const GURL
& url() const;
42 // The chain of redirects that leading up to and including the final URL.
43 std::vector
<GURL
> url_chain
;
45 // The URL that referred us.
48 // The URL of the tab that started us.
51 // The referrer URL of the tab that started us.
52 GURL tab_referrer_url
;
54 // The time when the download started.
55 base::Time start_time
;
57 // The total download size.
60 // The ID of the download.
63 // True if the download was initiated by user action.
64 bool has_user_gesture
;
66 ui::PageTransition transition_type
;
68 // The content-disposition string from the response header.
69 std::string content_disposition
;
71 // The mime type string from the response header (may be overridden).
72 std::string mime_type
;
74 // The value of the content type header sent with the downloaded item. It
75 // may be different from |mime_type|, which may be set based on heuristics
76 // which may look at the file extension and first few bytes of the file.
77 std::string original_mime_type
;
79 // For continuing a download, the modification time of the file.
80 // Storing as a string for exact match to server format on
81 // "If-Unmodified-Since" comparison.
82 std::string last_modified
;
84 // For continuing a download, the ETAG of the file.
87 // The download file save info.
88 scoped_ptr
<DownloadSaveInfo
> save_info
;
90 // The remote IP address where the download was fetched from. Copied from
91 // UrlRequest::GetSocketAddress().
92 std::string remote_address
;
94 // The handle to the URLRequest sourcing this download.
95 DownloadRequestHandle request_handle
;
97 // The request's |BoundNetLog|, for "source_dependency" linking with the
99 const net::BoundNetLog request_bound_net_log
;
102 DISALLOW_COPY_AND_ASSIGN(DownloadCreateInfo
);
105 } // namespace content
107 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_CREATE_INFO_H_