| 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/memory/ref_counted_memory.h" | 7 #include "base/memory/ref_counted_memory.h" |
| 8 | 8 |
| 9 namespace content { | 9 namespace content { |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 allow_download(allow_download), | 32 allow_download(allow_download), |
| 33 ui_timestamp(ui_timestamp), | 33 ui_timestamp(ui_timestamp), |
| 34 report_type(report_type), | 34 report_type(report_type), |
| 35 base_url_for_data_url(base_url_for_data_url), | 35 base_url_for_data_url(base_url_for_data_url), |
| 36 history_url_for_data_url(history_url_for_data_url) { | 36 history_url_for_data_url(history_url_for_data_url) { |
| 37 } | 37 } |
| 38 | 38 |
| 39 CommonNavigationParams::~CommonNavigationParams() { | 39 CommonNavigationParams::~CommonNavigationParams() { |
| 40 } | 40 } |
| 41 | 41 |
| 42 BeginNavigationParams::BeginNavigationParams() | 42 StartNavigationParams::StartNavigationParams() |
| 43 : load_flags(0), | 43 : is_post(false), |
| 44 has_user_gesture(false) { | 44 should_replace_current_entry(false), |
| 45 transferred_request_child_id(-1), |
| 46 transferred_request_request_id(-1) { |
| 45 } | 47 } |
| 46 | 48 |
| 47 BeginNavigationParams::BeginNavigationParams(std::string method, | 49 StartNavigationParams::StartNavigationParams( |
| 48 std::string headers, | 50 bool is_post, |
| 49 int load_flags, | 51 const std::string& extra_headers, |
| 50 bool has_user_gesture) | 52 const std::vector<unsigned char>& browser_initiated_post_data, |
| 51 : method(method), | 53 bool should_replace_current_entry, |
| 52 headers(headers), | 54 int transferred_request_child_id, |
| 53 load_flags(load_flags), | 55 int transferred_request_request_id) |
| 54 has_user_gesture(has_user_gesture) { | 56 : is_post(is_post), |
| 57 extra_headers(extra_headers), |
| 58 browser_initiated_post_data(browser_initiated_post_data), |
| 59 should_replace_current_entry(should_replace_current_entry), |
| 60 transferred_request_child_id(transferred_request_child_id), |
| 61 transferred_request_request_id(transferred_request_request_id) { |
| 62 } |
| 63 |
| 64 StartNavigationParams::~StartNavigationParams() { |
| 55 } | 65 } |
| 56 | 66 |
| 57 CommitNavigationParams::CommitNavigationParams() | 67 CommitNavigationParams::CommitNavigationParams() |
| 58 : is_overriding_user_agent(false), | 68 : is_overriding_user_agent(false), |
| 59 browser_navigation_start(base::TimeTicks::Now()), | 69 browser_navigation_start(base::TimeTicks::Now()), |
| 60 can_load_local_resources(false), | 70 can_load_local_resources(false), |
| 61 request_time(base::Time::Now()) { | 71 request_time(base::Time::Now()), |
| 72 page_id(-1), |
| 73 pending_history_list_offset(-1), |
| 74 current_history_list_offset(-1), |
| 75 current_history_list_length(0), |
| 76 should_clear_history_list(false) { |
| 62 } | 77 } |
| 63 | 78 |
| 64 CommitNavigationParams::CommitNavigationParams( | 79 CommitNavigationParams::CommitNavigationParams( |
| 65 bool is_overriding_user_agent, | 80 bool is_overriding_user_agent, |
| 66 base::TimeTicks navigation_start, | 81 base::TimeTicks navigation_start, |
| 67 const std::vector<GURL>& redirects, | 82 const std::vector<GURL>& redirects, |
| 68 bool can_load_local_resources, | 83 bool can_load_local_resources, |
| 69 const std::string& frame_to_navigate, | 84 const std::string& frame_to_navigate, |
| 70 base::Time request_time) | 85 base::Time request_time, |
| 71 : is_overriding_user_agent(is_overriding_user_agent), | |
| 72 browser_navigation_start(navigation_start), | |
| 73 redirects(redirects), | |
| 74 can_load_local_resources(can_load_local_resources), | |
| 75 frame_to_navigate(frame_to_navigate), | |
| 76 request_time(request_time) { | |
| 77 } | |
| 78 | |
| 79 CommitNavigationParams::~CommitNavigationParams() {} | |
| 80 | |
| 81 HistoryNavigationParams::HistoryNavigationParams() | |
| 82 : page_id(-1), | |
| 83 pending_history_list_offset(-1), | |
| 84 current_history_list_offset(-1), | |
| 85 current_history_list_length(0), | |
| 86 should_clear_history_list(false) { | |
| 87 } | |
| 88 | |
| 89 HistoryNavigationParams::HistoryNavigationParams( | |
| 90 const PageState& page_state, | 86 const PageState& page_state, |
| 91 int32 page_id, | 87 int32 page_id, |
| 92 int pending_history_list_offset, | 88 int pending_history_list_offset, |
| 93 int current_history_list_offset, | 89 int current_history_list_offset, |
| 94 int current_history_list_length, | 90 int current_history_list_length, |
| 95 bool should_clear_history_list) | 91 bool should_clear_history_list) |
| 96 : page_state(page_state), | 92 : is_overriding_user_agent(is_overriding_user_agent), |
| 93 browser_navigation_start(navigation_start), |
| 94 redirects(redirects), |
| 95 can_load_local_resources(can_load_local_resources), |
| 96 frame_to_navigate(frame_to_navigate), |
| 97 request_time(request_time), |
| 98 page_state(page_state), |
| 97 page_id(page_id), | 99 page_id(page_id), |
| 98 pending_history_list_offset(pending_history_list_offset), | 100 pending_history_list_offset(pending_history_list_offset), |
| 99 current_history_list_offset(current_history_list_offset), | 101 current_history_list_offset(current_history_list_offset), |
| 100 current_history_list_length(current_history_list_length), | 102 current_history_list_length(current_history_list_length), |
| 101 should_clear_history_list(should_clear_history_list) { | 103 should_clear_history_list(should_clear_history_list) { |
| 102 } | 104 } |
| 103 | 105 |
| 104 HistoryNavigationParams::~HistoryNavigationParams() { | 106 CommitNavigationParams::~CommitNavigationParams() { |
| 105 } | 107 } |
| 106 | 108 |
| 107 StartNavigationParams::StartNavigationParams() | 109 NavigationParams::NavigationParams(const CommonNavigationParams& common_params, |
| 108 : is_post(false), | 110 const StartNavigationParams& start_params, |
| 109 should_replace_current_entry(false), | 111 const CommitNavigationParams& commit_params) |
| 110 transferred_request_child_id(-1), | |
| 111 transferred_request_request_id(-1) { | |
| 112 } | |
| 113 | |
| 114 StartNavigationParams::StartNavigationParams( | |
| 115 bool is_post, | |
| 116 const std::string& extra_headers, | |
| 117 const std::vector<unsigned char>& browser_initiated_post_data, | |
| 118 bool should_replace_current_entry, | |
| 119 int transferred_request_child_id, | |
| 120 int transferred_request_request_id) | |
| 121 : is_post(is_post), | |
| 122 extra_headers(extra_headers), | |
| 123 browser_initiated_post_data(browser_initiated_post_data), | |
| 124 should_replace_current_entry(should_replace_current_entry), | |
| 125 transferred_request_child_id(transferred_request_child_id), | |
| 126 transferred_request_request_id(transferred_request_request_id) { | |
| 127 } | |
| 128 | |
| 129 StartNavigationParams::~StartNavigationParams() { | |
| 130 } | |
| 131 | |
| 132 NavigationParams::NavigationParams( | |
| 133 const CommonNavigationParams& common_params, | |
| 134 const StartNavigationParams& start_params, | |
| 135 const CommitNavigationParams& commit_params, | |
| 136 const HistoryNavigationParams& history_params) | |
| 137 : common_params(common_params), | 112 : common_params(common_params), |
| 138 start_params(start_params), | 113 start_params(start_params), |
| 139 commit_params(commit_params), | 114 commit_params(commit_params) { |
| 140 history_params(history_params) { | |
| 141 } | 115 } |
| 142 | 116 |
| 143 NavigationParams::~NavigationParams() { | 117 NavigationParams::~NavigationParams() { |
| 144 } | 118 } |
| 145 | 119 |
| 120 BeginNavigationParams::BeginNavigationParams() |
| 121 : load_flags(0), has_user_gesture(false) { |
| 122 } |
| 123 |
| 124 BeginNavigationParams::BeginNavigationParams(std::string method, |
| 125 std::string headers, |
| 126 int load_flags, |
| 127 bool has_user_gesture) |
| 128 : method(method), |
| 129 headers(headers), |
| 130 load_flags(load_flags), |
| 131 has_user_gesture(has_user_gesture) { |
| 132 } |
| 133 |
| 146 } // namespace content | 134 } // namespace content |
| OLD | NEW |