| OLD | NEW |
| 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 #include "content/renderer/mus/compositor_mus_connection.h" | 5 #include "content/renderer/mus/compositor_mus_connection.h" |
| 6 | 6 |
| 7 #include "base/single_thread_task_runner.h" | 7 #include "base/single_thread_task_runner.h" |
| 8 #include "content/common/input/web_input_event_traits.h" | 8 #include "content/common/input/web_input_event_traits.h" |
| 9 #include "content/renderer/input/input_handler_manager.h" | 9 #include "content/renderer/input/input_handler_manager.h" |
| 10 #include "content/renderer/mus/render_widget_mus_connection.h" | 10 #include "content/renderer/mus/render_widget_mus_connection.h" |
| 11 #include "mojo/converters/blink/blink_input_events_type_converters.h" | 11 #include "mojo/converters/blink/blink_input_events_type_converters.h" |
| 12 #include "ui/events/latency_info.h" | 12 #include "ui/events/latency_info.h" |
| 13 #include "ui/events/mojo/input_events_type_converters.h" | |
| 14 | 13 |
| 15 using mus::mojom::EventResult; | 14 using mus::mojom::EventResult; |
| 16 | 15 |
| 17 namespace { | 16 namespace { |
| 18 | 17 |
| 19 void DoNothingWithEventResult(EventResult result) {} | 18 void DoNothingWithEventResult(EventResult result) {} |
| 20 | 19 |
| 21 } // namespace | 20 } // namespace |
| 22 | 21 |
| 23 namespace content { | 22 namespace content { |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 this, *ack_callback->get()); | 147 this, *ack_callback->get()); |
| 149 ack_callback->reset(); | 148 ack_callback->reset(); |
| 150 } | 149 } |
| 151 main_task_runner_->PostTask( | 150 main_task_runner_->PostTask( |
| 152 FROM_HERE, | 151 FROM_HERE, |
| 153 base::Bind(&CompositorMusConnection::OnWindowInputEventOnMainThread, this, | 152 base::Bind(&CompositorMusConnection::OnWindowInputEventOnMainThread, this, |
| 154 base::Passed(std::move(web_event)), ack)); | 153 base::Passed(std::move(web_event)), ack)); |
| 155 } | 154 } |
| 156 | 155 |
| 157 } // namespace content | 156 } // namespace content |
| OLD | NEW |