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

Side by Side Diff: content/browser/frame_host/navigation_entry_impl.h

Issue 2653953005: PlzNavigate: transmit redirect info to the renderer side (Closed)
Patch Set: Rebase + addressed comments Created 3 years, 10 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
« no previous file with comments | « no previous file | content/browser/frame_host/navigation_entry_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 const FrameNavigationEntry& frame_entry, 179 const FrameNavigationEntry& frame_entry,
180 const scoped_refptr<ResourceRequestBodyImpl>& post_body, 180 const scoped_refptr<ResourceRequestBodyImpl>& post_body,
181 const GURL& dest_url, 181 const GURL& dest_url,
182 const Referrer& dest_referrer, 182 const Referrer& dest_referrer,
183 FrameMsg_Navigate_Type::Value navigation_type, 183 FrameMsg_Navigate_Type::Value navigation_type,
184 PreviewsState previews_state, 184 PreviewsState previews_state,
185 const base::TimeTicks& navigation_start) const; 185 const base::TimeTicks& navigation_start) const;
186 StartNavigationParams ConstructStartNavigationParams() const; 186 StartNavigationParams ConstructStartNavigationParams() const;
187 RequestNavigationParams ConstructRequestNavigationParams( 187 RequestNavigationParams ConstructRequestNavigationParams(
188 const FrameNavigationEntry& frame_entry, 188 const FrameNavigationEntry& frame_entry,
189 const GURL& original_url,
190 const std::string& original_method,
189 bool is_history_navigation_in_new_child, 191 bool is_history_navigation_in_new_child,
190 const std::map<std::string, bool>& subframe_unique_names, 192 const std::map<std::string, bool>& subframe_unique_names,
191 bool has_committed_real_load, 193 bool has_committed_real_load,
192 bool intended_as_new_entry, 194 bool intended_as_new_entry,
193 int pending_offset_to_send, 195 int pending_offset_to_send,
194 int current_offset_to_send, 196 int current_offset_to_send,
195 int current_length_to_send) const; 197 int current_length_to_send) const;
196 198
197 // Once a navigation entry is committed, we should no longer track several 199 // Once a navigation entry is committed, we should no longer track several
198 // pieces of non-persisted state, as documented on the members below. 200 // pieces of non-persisted state, as documented on the members below.
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 // Set to true if the navigation controller gets notified about a SSL error 553 // Set to true if the navigation controller gets notified about a SSL error
552 // for a pending navigation. Defaults to false. 554 // for a pending navigation. Defaults to false.
553 bool ssl_error_; 555 bool ssl_error_;
554 556
555 DISALLOW_COPY_AND_ASSIGN(NavigationEntryImpl); 557 DISALLOW_COPY_AND_ASSIGN(NavigationEntryImpl);
556 }; 558 };
557 559
558 } // namespace content 560 } // namespace content
559 561
560 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_ 562 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/navigation_entry_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698