Index: chrome/browser/ui/tab_contents/tab_contents_wrapper_delegate.h |
diff --git a/chrome/browser/ui/tab_contents/tab_contents_wrapper_delegate.h b/chrome/browser/ui/tab_contents/tab_contents_wrapper_delegate.h |
index 8fcef34b0a0e8d77475799f3f587f9ea5418806c..b7060df6cde08abc22265b06c2ac4f2c62d04e4c 100644 |
--- a/chrome/browser/ui/tab_contents/tab_contents_wrapper_delegate.h |
+++ b/chrome/browser/ui/tab_contents/tab_contents_wrapper_delegate.h |
@@ -7,6 +7,7 @@ |
#pragma once |
#include "base/basictypes.h" |
+#include "webkit/glue/window_open_disposition.h" |
class TabContentsWrapper; |
struct WebApplicationInfo; |
@@ -29,6 +30,10 @@ class TabContentsWrapperDelegate { |
virtual void SwapTabContents(TabContentsWrapper* old_tc, |
TabContentsWrapper* new_tc) = 0; |
+ // Navigation interface to supoprt disposition. |
+ virtual void GoBack(WindowOpenDisposition disposition) = 0; |
+ virtual void GoForward(WindowOpenDisposition disposition) = 0; |
+ |
protected: |
virtual ~TabContentsWrapperDelegate(); |
}; |