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

Side by Side Diff: content/renderer/mus/render_widget_mus_connection.h

Issue 2479123003: WIP Add getCoalescedEvents API using vector of WebInputEvents (Closed)
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_ 5 #ifndef CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_
6 #define CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_ 6 #define CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/threading/thread_checker.h" 9 #include "base/threading/thread_checker.h"
10 #include "cc/output/compositor_frame_sink.h" 10 #include "cc/output/compositor_frame_sink.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 InputEventAckState ack_result) override; 59 InputEventAckState ack_result) override;
60 void SetInputHandler(RenderWidgetInputHandler* input_handler) override; 60 void SetInputHandler(RenderWidgetInputHandler* input_handler) override;
61 void UpdateTextInputState(ShowIme show_ime, 61 void UpdateTextInputState(ShowIme show_ime,
62 ChangeSource change_source) override; 62 ChangeSource change_source) override;
63 bool WillHandleGestureEvent(const blink::WebGestureEvent& event) override; 63 bool WillHandleGestureEvent(const blink::WebGestureEvent& event) override;
64 bool WillHandleMouseEvent(const blink::WebMouseEvent& event) override; 64 bool WillHandleMouseEvent(const blink::WebMouseEvent& event) override;
65 65
66 void OnConnectionLost(); 66 void OnConnectionLost();
67 void OnWindowInputEvent( 67 void OnWindowInputEvent(
68 ui::ScopedWebInputEvent input_event, 68 ui::ScopedWebInputEvent input_event,
69 const std::vector<const blink::WebInputEvent*>& coalescedEvents,
69 const base::Callback<void(ui::mojom::EventResult)>& ack); 70 const base::Callback<void(ui::mojom::EventResult)>& ack);
70 71
71 const int routing_id_; 72 const int routing_id_;
72 RenderWidgetInputHandler* input_handler_; 73 RenderWidgetInputHandler* input_handler_;
73 std::unique_ptr<ui::WindowCompositorFrameSinkBinding> 74 std::unique_ptr<ui::WindowCompositorFrameSinkBinding>
74 window_compositor_frame_sink_binding_; 75 window_compositor_frame_sink_binding_;
75 scoped_refptr<CompositorMusConnection> compositor_mus_connection_; 76 scoped_refptr<CompositorMusConnection> compositor_mus_connection_;
76 77
77 base::Callback<void(ui::mojom::EventResult)> pending_ack_; 78 base::Callback<void(ui::mojom::EventResult)> pending_ack_;
78 79
79 // Used to verify single threaded access. 80 // Used to verify single threaded access.
80 base::ThreadChecker thread_checker_; 81 base::ThreadChecker thread_checker_;
81 82
82 DISALLOW_COPY_AND_ASSIGN(RenderWidgetMusConnection); 83 DISALLOW_COPY_AND_ASSIGN(RenderWidgetMusConnection);
83 }; 84 };
84 85
85 } // namespace content 86 } // namespace content
86 87
87 #endif // CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_ 88 #endif // CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698