Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(751)

Unified Diff: content/browser/tab_contents/navigation_entry_impl.cc

Issue 9169065: Reloading page after installing app should bring it into correct process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing merge conflict. Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/tab_contents/navigation_entry_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/tab_contents/navigation_entry_impl.cc
diff --git a/content/browser/tab_contents/navigation_entry_impl.cc b/content/browser/tab_contents/navigation_entry_impl.cc
index f9bc0f73456502191568d92bf50f9e88469f89eb..b683b3d44d7f6692d489d4c4f452646ac24525f5 100644
--- a/content/browser/tab_contents/navigation_entry_impl.cc
+++ b/content/browser/tab_contents/navigation_entry_impl.cc
@@ -44,7 +44,8 @@ NavigationEntryImpl::NavigationEntryImpl()
transition_type_(PAGE_TRANSITION_LINK),
has_post_data_(false),
restore_type_(RESTORE_NONE),
- is_renderer_initiated_(false) {
+ is_renderer_initiated_(false),
+ is_cross_site_reload_(false) {
}
NavigationEntryImpl::NavigationEntryImpl(SiteInstanceImpl* instance,
@@ -65,7 +66,8 @@ NavigationEntryImpl::NavigationEntryImpl(SiteInstanceImpl* 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),
+ is_cross_site_reload_(false) {
}
NavigationEntryImpl::~NavigationEntryImpl() {
« no previous file with comments | « content/browser/tab_contents/navigation_entry_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698