| Index: content/browser/frame_host/navigation_entry_impl.cc
|
| diff --git a/content/browser/frame_host/navigation_entry_impl.cc b/content/browser/frame_host/navigation_entry_impl.cc
|
| index 58dbaf46f5405153b6cd18abf5ed369ef31e66eb..01270fb4bc6e27cf0078c106f0f543b979bd1530 100644
|
| --- a/content/browser/frame_host/navigation_entry_impl.cc
|
| +++ b/content/browser/frame_host/navigation_entry_impl.cc
|
| @@ -52,7 +52,8 @@ NavigationEntryImpl::NavigationEntryImpl()
|
| is_renderer_initiated_(false),
|
| should_replace_entry_(false),
|
| should_clear_history_list_(false),
|
| - can_load_local_resources_(false) {
|
| + can_load_local_resources_(false),
|
| + frame_tree_node_id_(-1) {
|
| }
|
|
|
| NavigationEntryImpl::NavigationEntryImpl(SiteInstanceImpl* instance,
|
| @@ -80,7 +81,8 @@ NavigationEntryImpl::NavigationEntryImpl(SiteInstanceImpl* instance,
|
| is_renderer_initiated_(is_renderer_initiated),
|
| should_replace_entry_(false),
|
| should_clear_history_list_(false),
|
| - can_load_local_resources_(false) {
|
| + can_load_local_resources_(false),
|
| + frame_tree_node_id_(-1) {
|
| }
|
|
|
| NavigationEntryImpl::~NavigationEntryImpl() {
|
|
|