OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/common/navigation_params.h" | 5 #include "content/common/navigation_params.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "content/common/service_worker/service_worker_types.h" | 9 #include "content/common/service_worker/service_worker_types.h" |
10 #include "content/public/common/browser_side_navigation_policy.h" | 10 #include "content/public/common/browser_side_navigation_policy.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 url != content::kAboutSrcDocURL; | 27 url != content::kAboutSrcDocURL; |
28 } | 28 } |
29 | 29 |
30 CommonNavigationParams::CommonNavigationParams() | 30 CommonNavigationParams::CommonNavigationParams() |
31 : transition(ui::PAGE_TRANSITION_LINK), | 31 : transition(ui::PAGE_TRANSITION_LINK), |
32 navigation_type(FrameMsg_Navigate_Type::NORMAL), | 32 navigation_type(FrameMsg_Navigate_Type::NORMAL), |
33 gesture(NavigationGestureUnknown), | 33 gesture(NavigationGestureUnknown), |
34 allow_download(true), | 34 allow_download(true), |
35 should_replace_current_entry(false), | 35 should_replace_current_entry(false), |
36 report_type(FrameMsg_UILoadMetricsReportType::NO_REPORT), | 36 report_type(FrameMsg_UILoadMetricsReportType::NO_REPORT), |
37 lofi_state(LOFI_UNSPECIFIED), | 37 previews_state(0), |
38 navigation_start(base::TimeTicks::Now()), | 38 navigation_start(base::TimeTicks::Now()), |
39 method("GET") {} | 39 method("GET") {} |
40 | 40 |
41 CommonNavigationParams::CommonNavigationParams( | 41 CommonNavigationParams::CommonNavigationParams( |
42 const GURL& url, | 42 const GURL& url, |
43 const Referrer& referrer, | 43 const Referrer& referrer, |
44 ui::PageTransition transition, | 44 ui::PageTransition transition, |
45 FrameMsg_Navigate_Type::Value navigation_type, | 45 FrameMsg_Navigate_Type::Value navigation_type, |
46 NavigationGesture gesture, | 46 NavigationGesture gesture, |
47 bool allow_download, | 47 bool allow_download, |
48 bool should_replace_current_entry, | 48 bool should_replace_current_entry, |
49 base::TimeTicks ui_timestamp, | 49 base::TimeTicks ui_timestamp, |
50 FrameMsg_UILoadMetricsReportType::Value report_type, | 50 FrameMsg_UILoadMetricsReportType::Value report_type, |
51 const GURL& base_url_for_data_url, | 51 const GURL& base_url_for_data_url, |
52 const GURL& history_url_for_data_url, | 52 const GURL& history_url_for_data_url, |
53 LoFiState lofi_state, | 53 int previews_state, |
54 const base::TimeTicks& navigation_start, | 54 const base::TimeTicks& navigation_start, |
55 std::string method, | 55 std::string method, |
56 const scoped_refptr<ResourceRequestBodyImpl>& post_data) | 56 const scoped_refptr<ResourceRequestBodyImpl>& post_data) |
57 : url(url), | 57 : url(url), |
58 referrer(referrer), | 58 referrer(referrer), |
59 transition(transition), | 59 transition(transition), |
60 navigation_type(navigation_type), | 60 navigation_type(navigation_type), |
61 gesture(gesture), | 61 gesture(gesture), |
62 allow_download(allow_download), | 62 allow_download(allow_download), |
63 should_replace_current_entry(should_replace_current_entry), | 63 should_replace_current_entry(should_replace_current_entry), |
64 ui_timestamp(ui_timestamp), | 64 ui_timestamp(ui_timestamp), |
65 report_type(report_type), | 65 report_type(report_type), |
66 base_url_for_data_url(base_url_for_data_url), | 66 base_url_for_data_url(base_url_for_data_url), |
67 history_url_for_data_url(history_url_for_data_url), | 67 history_url_for_data_url(history_url_for_data_url), |
68 lofi_state(lofi_state), | 68 previews_state(previews_state), |
69 navigation_start(navigation_start), | 69 navigation_start(navigation_start), |
70 method(method), | 70 method(method), |
71 post_data(post_data) { | 71 post_data(post_data) { |
72 // |method != "POST"| should imply absence of |post_data|. | 72 // |method != "POST"| should imply absence of |post_data|. |
73 if (method != "POST" && post_data) { | 73 if (method != "POST" && post_data) { |
74 NOTREACHED(); | 74 NOTREACHED(); |
75 this->post_data = nullptr; | 75 this->post_data = nullptr; |
76 } | 76 } |
77 } | 77 } |
78 | 78 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 const RequestNavigationParams& request_params) | 182 const RequestNavigationParams& request_params) |
183 : common_params(common_params), | 183 : common_params(common_params), |
184 start_params(start_params), | 184 start_params(start_params), |
185 request_params(request_params) { | 185 request_params(request_params) { |
186 } | 186 } |
187 | 187 |
188 NavigationParams::~NavigationParams() { | 188 NavigationParams::~NavigationParams() { |
189 } | 189 } |
190 | 190 |
191 } // namespace content | 191 } // namespace content |
OLD | NEW |