| 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 f42466ff956fb69678738cc8555c67e1ae916268..4d279500a385941a4b99f69782a0a8b2a0da516e 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();
|
|
|
| // Exposed for tests.
|
| RenderWidgetHostViewBase* GetRootRenderWidgetHostViewForTesting() {
|
|
|