| Index: content/browser/tab_contents/tab_contents.cc
|
| diff --git a/content/browser/tab_contents/tab_contents.cc b/content/browser/tab_contents/tab_contents.cc
|
| index 14a387a62d7298b7d325c9325819baf2291c3afb..51685e65a53be3a69b06e553d3fb626380718dbe 100644
|
| --- a/content/browser/tab_contents/tab_contents.cc
|
| +++ b/content/browser/tab_contents/tab_contents.cc
|
| @@ -596,6 +596,13 @@ bool TabContents::NavigateToEntry(
|
| return true;
|
| }
|
|
|
| +void TabContents::ShiftHistory(int history_length) {
|
| + RenderViewHost* rvh = render_view_host();
|
| + if (!rvh)
|
| + return;
|
| + rvh->Send(new ViewMsg_ShiftHistory(rvh->routing_id(), history_length));
|
| +}
|
| +
|
| void TabContents::Stop() {
|
| render_manager_.Stop();
|
| FOR_EACH_OBSERVER(TabContentsObserver, observers_, StopNavigation());
|
|
|