| Index: content/browser/frame_host/cross_process_frame_connector.h | 
| diff --git a/content/browser/frame_host/cross_process_frame_connector.h b/content/browser/frame_host/cross_process_frame_connector.h | 
| index 9958c9e7720c6a551b88cf86681ca1bb458aa7e2..97b68bf410372202ac06725925504f4df4180e07 100644 | 
| --- a/content/browser/frame_host/cross_process_frame_connector.h | 
| +++ b/content/browser/frame_host/cross_process_frame_connector.h | 
| @@ -8,7 +8,9 @@ | 
| #include <stdint.h> | 
|  | 
| #include "cc/output/compositor_frame.h" | 
| +#include "content/browser/renderer_host/event_with_latency_info.h" | 
| #include "content/common/content_export.h" | 
| +#include "content/common/input/input_event_ack_state.h" | 
| #include "ui/gfx/geometry/rect.h" | 
|  | 
| namespace blink { | 
| @@ -95,10 +97,14 @@ class CONTENT_EXPORT CrossProcessFrameConnector { | 
| void UpdateCursor(const WebCursor& cursor); | 
| gfx::Point TransformPointToRootCoordSpace(const gfx::Point& point, | 
| cc::SurfaceId surface_id); | 
| +  // Pass acked touch events to the root view for gesture processing. | 
| +  void ForwardProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, | 
| +                                     InputEventAckState ack_result); | 
|  | 
| // Determines whether the root RenderWidgetHostView (and thus the current | 
| // page) has focus. | 
| bool HasFocus(); | 
| +  void Focus(); | 
|  | 
| private: | 
| // Handlers for messages received from the parent frame. | 
|  |