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/navigation_controller.h" | 5 #include "content/public/browser/navigation_controller.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 |
11 NavigationController::LoadURLParams::LoadURLParams(const GURL& url) | 11 NavigationController::LoadURLParams::LoadURLParams(const GURL& url) |
12 : url(url), | 12 : url(url), |
13 load_type(LOAD_TYPE_DEFAULT), | 13 load_type(LOAD_TYPE_DEFAULT), |
14 transition_type(PAGE_TRANSITION_LINK), | 14 transition_type(PAGE_TRANSITION_LINK), |
15 frame_tree_node_id(-1), | 15 frame_tree_node_id(-1), |
16 is_renderer_initiated(false), | 16 is_renderer_initiated(false), |
17 override_user_agent(UA_OVERRIDE_INHERIT), | 17 override_user_agent(UA_OVERRIDE_INHERIT), |
18 browser_initiated_post_data(NULL), | 18 browser_initiated_post_data(NULL), |
19 can_load_local_resources(false), | 19 can_load_local_resources(false), |
20 should_replace_current_entry(false), | 20 should_replace_current_entry(false), |
21 should_clear_history_list(false) { | 21 should_clear_history_list(false), |
| 22 is_transition_navigation(false) { |
22 } | 23 } |
23 | 24 |
24 NavigationController::LoadURLParams::~LoadURLParams() { | 25 NavigationController::LoadURLParams::~LoadURLParams() { |
25 } | 26 } |
26 | 27 |
27 NavigationController::LoadURLParams::LoadURLParams( | 28 NavigationController::LoadURLParams::LoadURLParams( |
28 const NavigationController::LoadURLParams& other) | 29 const NavigationController::LoadURLParams& other) |
29 : url(other.url), | 30 : url(other.url), |
30 load_type(other.load_type), | 31 load_type(other.load_type), |
31 transition_type(other.transition_type), | 32 transition_type(other.transition_type), |
32 frame_tree_node_id(other.frame_tree_node_id), | 33 frame_tree_node_id(other.frame_tree_node_id), |
33 referrer(other.referrer), | 34 referrer(other.referrer), |
34 extra_headers(other.extra_headers), | 35 extra_headers(other.extra_headers), |
35 is_renderer_initiated(other.is_renderer_initiated), | 36 is_renderer_initiated(other.is_renderer_initiated), |
36 override_user_agent(other.override_user_agent), | 37 override_user_agent(other.override_user_agent), |
37 transferred_global_request_id(other.transferred_global_request_id), | 38 transferred_global_request_id(other.transferred_global_request_id), |
38 base_url_for_data_url(other.base_url_for_data_url), | 39 base_url_for_data_url(other.base_url_for_data_url), |
39 virtual_url_for_data_url(other.virtual_url_for_data_url), | 40 virtual_url_for_data_url(other.virtual_url_for_data_url), |
40 browser_initiated_post_data(other.browser_initiated_post_data), | 41 browser_initiated_post_data(other.browser_initiated_post_data), |
41 should_replace_current_entry(false), | 42 should_replace_current_entry(false), |
42 should_clear_history_list(false) { | 43 should_clear_history_list(false), |
| 44 is_transition_navigation(false) { |
43 } | 45 } |
44 | 46 |
45 NavigationController::LoadURLParams& | 47 NavigationController::LoadURLParams& |
46 NavigationController::LoadURLParams::operator=( | 48 NavigationController::LoadURLParams::operator=( |
47 const NavigationController::LoadURLParams& other) { | 49 const NavigationController::LoadURLParams& other) { |
48 url = other.url; | 50 url = other.url; |
49 load_type = other.load_type; | 51 load_type = other.load_type; |
50 transition_type = other.transition_type; | 52 transition_type = other.transition_type; |
51 frame_tree_node_id = other.frame_tree_node_id; | 53 frame_tree_node_id = other.frame_tree_node_id; |
52 referrer = other.referrer; | 54 referrer = other.referrer; |
53 redirect_chain = other.redirect_chain; | 55 redirect_chain = other.redirect_chain; |
54 extra_headers = other.extra_headers; | 56 extra_headers = other.extra_headers; |
55 is_renderer_initiated = other.is_renderer_initiated; | 57 is_renderer_initiated = other.is_renderer_initiated; |
56 override_user_agent = other.override_user_agent; | 58 override_user_agent = other.override_user_agent; |
57 transferred_global_request_id = other.transferred_global_request_id; | 59 transferred_global_request_id = other.transferred_global_request_id; |
58 base_url_for_data_url = other.base_url_for_data_url; | 60 base_url_for_data_url = other.base_url_for_data_url; |
59 virtual_url_for_data_url = other.virtual_url_for_data_url; | 61 virtual_url_for_data_url = other.virtual_url_for_data_url; |
60 browser_initiated_post_data = other.browser_initiated_post_data; | 62 browser_initiated_post_data = other.browser_initiated_post_data; |
61 should_replace_current_entry = other.should_replace_current_entry; | 63 should_replace_current_entry = other.should_replace_current_entry; |
62 should_clear_history_list = other.should_clear_history_list; | 64 should_clear_history_list = other.should_clear_history_list; |
| 65 is_transition_navigation = other.is_transition_navigation; |
63 | 66 |
64 return *this; | 67 return *this; |
65 } | 68 } |
66 | 69 |
67 } // namespace content | 70 } // namespace content |
OLD | NEW |