[Android WebView] Fix webview perf bot switchover to use org.chromium.webview_shell...
[chromium-blink-merge.git] / content / common / navigation_params.cc
blob33d1c8ed2fcaebe99369e95855296bbc445ffac4
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
3 // found in the LICENSE file.
5 #include "content/common/navigation_params.h"
7 #include "base/memory/ref_counted_memory.h"
9 namespace content {
11 CommonNavigationParams::CommonNavigationParams()
12 : transition(ui::PAGE_TRANSITION_LINK),
13 navigation_type(FrameMsg_Navigate_Type::NORMAL),
14 allow_download(true),
15 report_type(FrameMsg_UILoadMetricsReportType::NO_REPORT) {
18 CommonNavigationParams::CommonNavigationParams(
19 const GURL& url,
20 const Referrer& referrer,
21 ui::PageTransition transition,
22 FrameMsg_Navigate_Type::Value navigation_type,
23 bool allow_download,
24 base::TimeTicks ui_timestamp,
25 FrameMsg_UILoadMetricsReportType::Value report_type,
26 const GURL& base_url_for_data_url,
27 const GURL& history_url_for_data_url)
28 : url(url),
29 referrer(referrer),
30 transition(transition),
31 navigation_type(navigation_type),
32 allow_download(allow_download),
33 ui_timestamp(ui_timestamp),
34 report_type(report_type),
35 base_url_for_data_url(base_url_for_data_url),
36 history_url_for_data_url(history_url_for_data_url) {
39 CommonNavigationParams::~CommonNavigationParams() {
42 BeginNavigationParams::BeginNavigationParams()
43 : load_flags(0), has_user_gesture(false) {
46 BeginNavigationParams::BeginNavigationParams(std::string method,
47 std::string headers,
48 int load_flags,
49 bool has_user_gesture)
50 : method(method),
51 headers(headers),
52 load_flags(load_flags),
53 has_user_gesture(has_user_gesture) {
56 StartNavigationParams::StartNavigationParams()
57 : is_post(false),
58 should_replace_current_entry(false),
59 transferred_request_child_id(-1),
60 transferred_request_request_id(-1) {
63 StartNavigationParams::StartNavigationParams(
64 bool is_post,
65 const std::string& extra_headers,
66 const std::vector<unsigned char>& browser_initiated_post_data,
67 bool should_replace_current_entry,
68 int transferred_request_child_id,
69 int transferred_request_request_id)
70 : is_post(is_post),
71 extra_headers(extra_headers),
72 browser_initiated_post_data(browser_initiated_post_data),
73 should_replace_current_entry(should_replace_current_entry),
74 transferred_request_child_id(transferred_request_child_id),
75 transferred_request_request_id(transferred_request_request_id) {
78 StartNavigationParams::~StartNavigationParams() {
81 RequestNavigationParams::RequestNavigationParams()
82 : is_overriding_user_agent(false),
83 browser_navigation_start(base::TimeTicks::Now()),
84 can_load_local_resources(false),
85 request_time(base::Time::Now()),
86 page_id(-1),
87 nav_entry_id(0),
88 has_committed_real_load(false),
89 intended_as_new_entry(false),
90 pending_history_list_offset(-1),
91 current_history_list_offset(-1),
92 current_history_list_length(0),
93 should_clear_history_list(false) {
96 RequestNavigationParams::RequestNavigationParams(
97 bool is_overriding_user_agent,
98 base::TimeTicks navigation_start,
99 const std::vector<GURL>& redirects,
100 bool can_load_local_resources,
101 base::Time request_time,
102 const PageState& page_state,
103 int32 page_id,
104 int nav_entry_id,
105 bool has_committed_real_load,
106 bool intended_as_new_entry,
107 int pending_history_list_offset,
108 int current_history_list_offset,
109 int current_history_list_length,
110 bool should_clear_history_list)
111 : is_overriding_user_agent(is_overriding_user_agent),
112 browser_navigation_start(navigation_start),
113 redirects(redirects),
114 can_load_local_resources(can_load_local_resources),
115 request_time(request_time),
116 page_state(page_state),
117 page_id(page_id),
118 nav_entry_id(nav_entry_id),
119 has_committed_real_load(has_committed_real_load),
120 intended_as_new_entry(intended_as_new_entry),
121 pending_history_list_offset(pending_history_list_offset),
122 current_history_list_offset(current_history_list_offset),
123 current_history_list_length(current_history_list_length),
124 should_clear_history_list(should_clear_history_list) {
127 RequestNavigationParams::~RequestNavigationParams() {
130 NavigationParams::NavigationParams(
131 const CommonNavigationParams& common_params,
132 const StartNavigationParams& start_params,
133 const RequestNavigationParams& request_params)
134 : common_params(common_params),
135 start_params(start_params),
136 request_params(request_params) {
139 NavigationParams::~NavigationParams() {
142 } // namespace content