| OLD | NEW |
| 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 Loading... |
| 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 bool is_same_document_history_load, | |
| 190 bool is_history_navigation_in_new_child, | 189 bool is_history_navigation_in_new_child, |
| 191 const std::map<std::string, bool>& subframe_unique_names, | 190 const std::map<std::string, bool>& subframe_unique_names, |
| 192 bool has_committed_real_load, | 191 bool has_committed_real_load, |
| 193 bool intended_as_new_entry, | 192 bool intended_as_new_entry, |
| 194 int pending_offset_to_send, | 193 int pending_offset_to_send, |
| 195 int current_offset_to_send, | 194 int current_offset_to_send, |
| 196 int current_length_to_send) const; | 195 int current_length_to_send) const; |
| 197 | 196 |
| 198 // Once a navigation entry is committed, we should no longer track several | 197 // Once a navigation entry is committed, we should no longer track several |
| 199 // pieces of non-persisted state, as documented on the members below. | 198 // pieces of non-persisted state, as documented on the members below. |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 // Set to true if the navigation controller gets notified about a SSL error | 551 // Set to true if the navigation controller gets notified about a SSL error |
| 553 // for a pending navigation. Defaults to false. | 552 // for a pending navigation. Defaults to false. |
| 554 bool ssl_error_; | 553 bool ssl_error_; |
| 555 | 554 |
| 556 DISALLOW_COPY_AND_ASSIGN(NavigationEntryImpl); | 555 DISALLOW_COPY_AND_ASSIGN(NavigationEntryImpl); |
| 557 }; | 556 }; |
| 558 | 557 |
| 559 } // namespace content | 558 } // namespace content |
| 560 | 559 |
| 561 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_ | 560 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_ |
| OLD | NEW |