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

Unified Diff: blimp/engine/browser/blimp_engine_session.h

Issue 1422363008: Add a basic UI to the Android Blimp client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Made sure to clear old control data Created 5 years, 1 month 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
« no previous file with comments | « blimp/engine/browser/blimp_browser_main_parts.cc ('k') | blimp/engine/browser/blimp_engine_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(
« no previous file with comments | « blimp/engine/browser/blimp_browser_main_parts.cc ('k') | blimp/engine/browser/blimp_engine_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698