 Chromium Code Reviews
 Chromium Code Reviews Issue 1729373003:
  Implement touch events for site-isolation.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 1729373003:
  Implement touch events for site-isolation.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| 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..7e0d8ab71fc419f12d3c163196326921a936bccc 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,13 @@ class CONTENT_EXPORT CrossProcessFrameConnector { | 
| void UpdateCursor(const WebCursor& cursor); | 
| gfx::Point TransformPointToRootCoordSpace(const gfx::Point& point, | 
| cc::SurfaceId surface_id); | 
| + void ForwardProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, | 
| 
kenrb
2016/02/25 00:58:04
This warrants a comment.
 
wjmaclean
2016/02/25 12:23:02
Done.
 | 
| + 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. |