| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 const FrameNavigationEntry& frame_entry, | 178 const FrameNavigationEntry& frame_entry, |
| 179 const scoped_refptr<ResourceRequestBodyImpl>& post_body, | 179 const scoped_refptr<ResourceRequestBodyImpl>& post_body, |
| 180 const GURL& dest_url, | 180 const GURL& dest_url, |
| 181 const Referrer& dest_referrer, | 181 const Referrer& dest_referrer, |
| 182 FrameMsg_Navigate_Type::Value navigation_type, | 182 FrameMsg_Navigate_Type::Value navigation_type, |
| 183 LoFiState lofi_state, | 183 LoFiState lofi_state, |
| 184 const base::TimeTicks& navigation_start) const; | 184 const base::TimeTicks& navigation_start) const; |
| 185 StartNavigationParams ConstructStartNavigationParams() const; | 185 StartNavigationParams ConstructStartNavigationParams() const; |
| 186 RequestNavigationParams ConstructRequestNavigationParams( | 186 RequestNavigationParams ConstructRequestNavigationParams( |
| 187 const FrameNavigationEntry& frame_entry, | 187 const FrameNavigationEntry& frame_entry, |
| 188 bool is_same_document_fragment_change, |
| 188 bool is_same_document_history_load, | 189 bool is_same_document_history_load, |
| 189 bool is_history_navigation_in_new_child, | 190 bool is_history_navigation_in_new_child, |
| 190 const std::map<std::string, bool>& subframe_unique_names, | 191 const std::map<std::string, bool>& subframe_unique_names, |
| 191 bool has_committed_real_load, | 192 bool has_committed_real_load, |
| 192 bool intended_as_new_entry, | 193 bool intended_as_new_entry, |
| 193 int pending_offset_to_send, | 194 int pending_offset_to_send, |
| 194 int current_offset_to_send, | 195 int current_offset_to_send, |
| 195 int current_length_to_send) const; | 196 int current_length_to_send) const; |
| 196 | 197 |
| 197 // Once a navigation entry is committed, we should no longer track several | 198 // Once a navigation entry is committed, we should no longer track several |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 // Set to true if the navigation controller gets notified about a SSL error | 552 // Set to true if the navigation controller gets notified about a SSL error |
| 552 // for a pending navigation. Defaults to false. | 553 // for a pending navigation. Defaults to false. |
| 553 bool ssl_error_; | 554 bool ssl_error_; |
| 554 | 555 |
| 555 DISALLOW_COPY_AND_ASSIGN(NavigationEntryImpl); | 556 DISALLOW_COPY_AND_ASSIGN(NavigationEntryImpl); |
| 556 }; | 557 }; |
| 557 | 558 |
| 558 } // namespace content | 559 } // namespace content |
| 559 | 560 |
| 560 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_ | 561 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_ |
| OLD | NEW |