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..a62252383cebefe191719620cd8ba4190f72b876 100644 |
--- a/content/browser/tab_contents/navigation_entry.cc |
+++ b/content/browser/tab_contents/navigation_entry.cc |
@@ -43,7 +43,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_(-1) { |
awong
2011/12/21 01:56:07
There should be a constant for an invalid frame ID
supersat
2011/12/23 03:22:46
Done.
|
} |
NavigationEntry::NavigationEntry(SiteInstance* instance, |
@@ -64,7 +65,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_(-1) { |
} |
NavigationEntry::~NavigationEntry() { |