| 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 a74e144c27c2db294fd47830fad2e88c9bab85ca..22f421ca841f86f69bf3bd384214316c830b3edc 100644
|
| --- a/content/browser/tab_contents/navigation_entry.cc
|
| +++ b/content/browser/tab_contents/navigation_entry.cc
|
| @@ -42,7 +42,8 @@ NavigationEntry::NavigationEntry()
|
| page_id_(-1),
|
| transition_type_(content::PAGE_TRANSITION_LINK),
|
| has_post_data_(false),
|
| - restore_type_(RESTORE_NONE) {
|
| + restore_type_(RESTORE_NONE),
|
| + is_renderer_initiated_(false) {
|
| }
|
|
|
| NavigationEntry::NavigationEntry(SiteInstance* instance,
|
| @@ -50,7 +51,8 @@ NavigationEntry::NavigationEntry(SiteInstance* instance,
|
| const GURL& url,
|
| const GURL& referrer,
|
| const string16& title,
|
| - content::PageTransition transition_type)
|
| + content::PageTransition transition_type,
|
| + bool is_renderer_initiated)
|
| : unique_id_(GetUniqueID()),
|
| site_instance_(instance),
|
| page_type_(NORMAL_PAGE),
|
| @@ -61,7 +63,8 @@ NavigationEntry::NavigationEntry(SiteInstance* instance,
|
| page_id_(page_id),
|
| transition_type_(transition_type),
|
| has_post_data_(false),
|
| - restore_type_(RESTORE_NONE) {
|
| + restore_type_(RESTORE_NONE),
|
| + is_renderer_initiated_(is_renderer_initiated) {
|
| }
|
|
|
| NavigationEntry::~NavigationEntry() {
|
|
|