Index: blimp/engine/browser/blimp_engine_session.h |
diff --git a/blimp/engine/browser/blimp_engine_session.h b/blimp/engine/browser/blimp_engine_session.h |
index 46b30391906c78d21510d6d00ec692158568521b..054534c47efcf00cf571013efb4e9d4b65b67a83 100644 |
--- a/blimp/engine/browser/blimp_engine_session.h |
+++ b/blimp/engine/browser/blimp_engine_session.h |
@@ -57,11 +57,17 @@ class BlimpEngineSession : public BlimpMessageReceiver, |
net::Error OnBlimpMessage(const BlimpMessage& message) override; |
private: |
+ // ControlMessage handler methods. |
// Creates a new WebContents, which will be indexed by |target_tab_id|. |
void CreateWebContents(const int target_tab_id); |
+ void CloseWebContents(const int target_tab_id); |
+ // NavigationMessage handler methods. |
// Navigates the target tab to the |url|. |
void LoadUrl(const int target_tab_id, const GURL& url); |
+ void GoBack(const int target_tab_id); |
+ void GoForward(const int target_tab_id); |
+ void Reload(const int target_tab_id); |
// content::WebContentsDelegate implementation. |
content::WebContents* OpenURLFromTab( |