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

Unified Diff: chrome/renderer/render_view.h

Issue 1090002: Send session history offset and length parameters in the Navigate message to... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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/render_view.h
===================================================================
--- chrome/renderer/render_view.h (revision 41858)
+++ chrome/renderer/render_view.h (working copy)
@@ -263,7 +263,6 @@
virtual void navigateBackForwardSoon(int offset);
virtual int historyBackListCount();
virtual int historyForwardListCount();
- virtual void didAddHistoryItem();
virtual void focusAccessibilityObject(
const WebKit::WebAccessibilityObject& acc_obj);
virtual void didChangeAccessibilityObjectState(
@@ -709,8 +708,6 @@
void OnExecuteCode(const ViewMsg_ExecuteCode_Params& params);
void ExecuteCodeImpl(WebKit::WebFrame* frame,
const ViewMsg_ExecuteCode_Params& params);
- void OnUpdateBackForwardListCount(int back_list_count,
- int forward_list_count);
void OnGetAccessibilityInfo(
const webkit_glue::WebAccessibility::InParams& in_params,
webkit_glue::WebAccessibility::OutParams* out_params);
@@ -1010,8 +1007,8 @@
// choosing operation is underway.
WebKit::WebFileChooserCompletion* file_chooser_completion_;
- int history_back_list_count_;
- int history_forward_list_count_;
+ int history_list_offset_;
+ int history_list_length_;
// True if the page has any frame-level unload or beforeunload listeners.
bool has_unload_listener_;

Powered by Google App Engine
This is Rietveld 408576698