Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: content/common/navigation_params.cc

Issue 1002803002: Classify navigations without page id in parallel to the existing classifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: intended Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 77
78 StartNavigationParams::~StartNavigationParams() { 78 StartNavigationParams::~StartNavigationParams() {
79 } 79 }
80 80
81 RequestNavigationParams::RequestNavigationParams() 81 RequestNavigationParams::RequestNavigationParams()
82 : is_overriding_user_agent(false), 82 : is_overriding_user_agent(false),
83 browser_navigation_start(base::TimeTicks::Now()), 83 browser_navigation_start(base::TimeTicks::Now()),
84 can_load_local_resources(false), 84 can_load_local_resources(false),
85 request_time(base::Time::Now()), 85 request_time(base::Time::Now()),
86 page_id(-1), 86 page_id(-1),
87 nav_entry_id(0),
87 pending_history_list_offset(-1), 88 pending_history_list_offset(-1),
88 current_history_list_offset(-1), 89 current_history_list_offset(-1),
89 current_history_list_length(0), 90 current_history_list_length(0),
90 should_clear_history_list(false) { 91 should_clear_history_list(false) {
91 } 92 }
92 93
93 RequestNavigationParams::RequestNavigationParams( 94 RequestNavigationParams::RequestNavigationParams(
94 bool is_overriding_user_agent, 95 bool is_overriding_user_agent,
95 base::TimeTicks navigation_start, 96 base::TimeTicks navigation_start,
96 const std::vector<GURL>& redirects, 97 const std::vector<GURL>& redirects,
97 bool can_load_local_resources, 98 bool can_load_local_resources,
98 const std::string& frame_to_navigate, 99 const std::string& frame_to_navigate,
99 base::Time request_time, 100 base::Time request_time,
100 const PageState& page_state, 101 const PageState& page_state,
101 int32 page_id, 102 int32 page_id,
103 int nav_entry_id,
104 bool intended_as_new_entry,
102 int pending_history_list_offset, 105 int pending_history_list_offset,
103 int current_history_list_offset, 106 int current_history_list_offset,
104 int current_history_list_length, 107 int current_history_list_length,
105 bool should_clear_history_list) 108 bool should_clear_history_list)
106 : is_overriding_user_agent(is_overriding_user_agent), 109 : is_overriding_user_agent(is_overriding_user_agent),
107 browser_navigation_start(navigation_start), 110 browser_navigation_start(navigation_start),
108 redirects(redirects), 111 redirects(redirects),
109 can_load_local_resources(can_load_local_resources), 112 can_load_local_resources(can_load_local_resources),
110 frame_to_navigate(frame_to_navigate), 113 frame_to_navigate(frame_to_navigate),
111 request_time(request_time), 114 request_time(request_time),
112 page_state(page_state), 115 page_state(page_state),
113 page_id(page_id), 116 page_id(page_id),
117 nav_entry_id(nav_entry_id),
118 intended_as_new_entry(intended_as_new_entry),
114 pending_history_list_offset(pending_history_list_offset), 119 pending_history_list_offset(pending_history_list_offset),
115 current_history_list_offset(current_history_list_offset), 120 current_history_list_offset(current_history_list_offset),
116 current_history_list_length(current_history_list_length), 121 current_history_list_length(current_history_list_length),
117 should_clear_history_list(should_clear_history_list) { 122 should_clear_history_list(should_clear_history_list) {
118 } 123 }
119 124
120 RequestNavigationParams::~RequestNavigationParams() { 125 RequestNavigationParams::~RequestNavigationParams() {
121 } 126 }
122 127
123 NavigationParams::NavigationParams( 128 NavigationParams::NavigationParams(
124 const CommonNavigationParams& common_params, 129 const CommonNavigationParams& common_params,
125 const StartNavigationParams& start_params, 130 const StartNavigationParams& start_params,
126 const RequestNavigationParams& request_params) 131 const RequestNavigationParams& request_params)
127 : common_params(common_params), 132 : common_params(common_params),
128 start_params(start_params), 133 start_params(start_params),
129 request_params(request_params) { 134 request_params(request_params) {
130 } 135 }
131 136
132 NavigationParams::~NavigationParams() { 137 NavigationParams::~NavigationParams() {
133 } 138 }
134 139
135 } // namespace content 140 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698