| Index: content/browser/tab_contents/navigation_entry.cc
|
| diff --git a/content/browser/tab_contents/navigation_entry.cc b/content/browser/tab_contents/navigation_entry.cc
|
| index 8efaab439009c290e1af29012329c154145786d0..682eecfaafb977b4f408ac7d5af0e4a3ebbaf0d2 100644
|
| --- a/content/browser/tab_contents/navigation_entry.cc
|
| +++ b/content/browser/tab_contents/navigation_entry.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/string_util.h"
|
| #include "base/utf_string_conversions.h"
|
| +#include "content/browser/content_frame.h"
|
| #include "content/browser/site_instance.h"
|
| #include "content/public/browser/content_browser_client.h"
|
| #include "content/public/common/content_constants.h"
|
| @@ -43,7 +44,8 @@ NavigationEntry::NavigationEntry()
|
| transition_type_(content::PAGE_TRANSITION_LINK),
|
| has_post_data_(false),
|
| restore_type_(RESTORE_NONE),
|
| - is_renderer_initiated_(false) {
|
| + is_renderer_initiated_(false),
|
| + opener_content_frame_id_(content::INVALID_CONTENT_FRAME_ID) {
|
| }
|
|
|
| NavigationEntry::NavigationEntry(SiteInstance* instance,
|
| @@ -64,7 +66,8 @@ NavigationEntry::NavigationEntry(SiteInstance* instance,
|
| transition_type_(transition_type),
|
| has_post_data_(false),
|
| restore_type_(RESTORE_NONE),
|
| - is_renderer_initiated_(is_renderer_initiated) {
|
| + is_renderer_initiated_(is_renderer_initiated),
|
| + opener_content_frame_id_(content::INVALID_CONTENT_FRAME_ID) {
|
| }
|
|
|
| NavigationEntry::~NavigationEntry() {
|
|
|