| OLD | NEW |
| 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/public/browser/download_url_parameters.h" | 5 #include "content/public/browser/download_url_parameters.h" |
| 6 | 6 |
| 7 #include "base/callback.h" | 7 #include "base/callback.h" |
| 8 #include "content/public/browser/browser_context.h" | 8 #include "content/public/browser/browser_context.h" |
| 9 #include "content/public/browser/download_save_info.h" | 9 #include "content/public/browser/download_save_info.h" |
| 10 #include "content/public/browser/render_process_host.h" | 10 #include "content/public/browser/render_process_host.h" |
| 11 #include "content/public/browser/render_view_host.h" | 11 #include "content/public/browser/render_view_host.h" |
| 12 #include "content/public/browser/web_contents.h" | 12 #include "content/public/browser/web_contents.h" |
| 13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
| 14 | 14 |
| 15 namespace content { | 15 namespace content { |
| 16 | 16 |
| 17 DownloadUrlParameters::DownloadUrlParameters( | 17 DownloadUrlParameters::DownloadUrlParameters( |
| 18 const GURL& url, | 18 const GURL& url, |
| 19 int render_process_host_id, | 19 int render_process_host_id, |
| 20 int render_view_host_routing_id, | 20 int render_view_host_routing_id, |
| 21 ResourceContext* resource_context) | 21 ResourceContext* resource_context) |
| 22 : content_initiated_(false), | 22 : content_initiated_(false), |
| 23 load_flags_(0), | 23 load_flags_(0), |
| 24 method_("GET"), | 24 method_("GET"), |
| 25 post_id_(-1), | 25 post_id_(-1), |
| 26 prefer_cache_(false), | 26 prefer_cache_(false), |
| 27 render_process_host_id_(render_process_host_id), | 27 render_process_host_id_(render_process_host_id), |
| 28 render_view_host_routing_id_(render_view_host_routing_id), | 28 render_view_host_routing_id_(render_view_host_routing_id), |
| 29 resource_context_(resource_context), | 29 resource_context_(resource_context), |
| 30 url_(url) { | 30 url_(url), |
| 31 do_not_prompt_for_login_(false) { |
| 31 } | 32 } |
| 32 | 33 |
| 33 DownloadUrlParameters::~DownloadUrlParameters() { | 34 DownloadUrlParameters::~DownloadUrlParameters() { |
| 34 } | 35 } |
| 35 | 36 |
| 36 // static | 37 // static |
| 37 DownloadUrlParameters* DownloadUrlParameters::FromWebContents( | 38 DownloadUrlParameters* DownloadUrlParameters::FromWebContents( |
| 38 WebContents* web_contents, | 39 WebContents* web_contents, |
| 39 const GURL& url) { | 40 const GURL& url) { |
| 40 return new DownloadUrlParameters( | 41 return new DownloadUrlParameters( |
| 41 url, | 42 url, |
| 42 web_contents->GetRenderProcessHost()->GetID(), | 43 web_contents->GetRenderProcessHost()->GetID(), |
| 43 web_contents->GetRenderViewHost()->GetRoutingID(), | 44 web_contents->GetRenderViewHost()->GetRoutingID(), |
| 44 web_contents->GetBrowserContext()->GetResourceContext()); | 45 web_contents->GetBrowserContext()->GetResourceContext()); |
| 45 } | 46 } |
| 46 | 47 |
| 47 } // namespace content | 48 } // namespace content |
| OLD | NEW |