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

Unified Diff: chrome/renderer/navigation_state.cc

Issue 6532031: Fix for swapping in prerendered RenderViews with provisional data sources (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove some unneeded code Created 9 years, 10 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
Index: chrome/renderer/navigation_state.cc
===================================================================
--- chrome/renderer/navigation_state.cc (revision 75181)
+++ chrome/renderer/navigation_state.cc (working copy)
@@ -39,14 +39,6 @@
alt_error_page_fetcher_.reset(f);
}
-bool NavigationState::is_prerendering() const {
- return is_prerendering_;
-}
-
-void NavigationState::set_is_prerendering(bool is_prerendering) {
- is_prerendering_ = is_prerendering;
-}
-
bool NavigationState::was_started_as_prerender() const {
return was_started_as_prerender_;
}
@@ -72,7 +64,6 @@
pending_page_id_(pending_page_id),
pending_history_list_offset_(pending_history_list_offset),
postpone_loading_data_(false),
- is_prerendering_(false),
was_started_as_prerender_(false),
cache_policy_override_set_(false),
cache_policy_override_(WebKit::WebURLRequest::UseProtocolCachePolicy),

Powered by Google App Engine
This is Rietveld 408576698