| Index: blimp/client/session/blimp_client_session.h | 
| diff --git a/blimp/client/session/blimp_client_session.h b/blimp/client/session/blimp_client_session.h | 
| index d7ffa56510b7679c0d966f13b5bd866ff22371cc..fbb8ea5c50da87802d70aeb13a3341c9d3eb236c 100644 | 
| --- a/blimp/client/session/blimp_client_session.h | 
| +++ b/blimp/client/session/blimp_client_session.h | 
| @@ -32,6 +32,7 @@ namespace client { | 
|  | 
| class ClientNetworkComponents; | 
| class NavigationFeature; | 
| +class WebInputFeature; | 
| class RenderWidgetFeature; | 
| class TabControlFeature; | 
|  | 
| @@ -65,6 +66,7 @@ class BLIMP_CLIENT_EXPORT BlimpClientSession : public NetworkEventObserver { | 
|  | 
| TabControlFeature* GetTabControlFeature() const; | 
| NavigationFeature* GetNavigationFeature() const; | 
| +  WebInputFeature* GetWebInputFeature() const; | 
| RenderWidgetFeature* GetRenderWidgetFeature() const; | 
|  | 
| // The AssignmentCallback for when an assignment is ready. This will trigger | 
| @@ -89,6 +91,7 @@ class BLIMP_CLIENT_EXPORT BlimpClientSession : public NetworkEventObserver { | 
| base::Thread io_thread_; | 
| scoped_ptr<TabControlFeature> tab_control_feature_; | 
| scoped_ptr<NavigationFeature> navigation_feature_; | 
| +  scoped_ptr<WebInputFeature> web_input_feature_; | 
| scoped_ptr<RenderWidgetFeature> render_widget_feature_; | 
|  | 
| // The AssignmentSource is used when the user of BlimpClientSession calls | 
|  |