| Index: ui/events/ozone/evdev/input_injector_evdev.cc
|
| diff --git a/ui/events/ozone/evdev/input_injector_evdev.cc b/ui/events/ozone/evdev/input_injector_evdev.cc
|
| index d180e615406f9390ae0d3632e830fc8f7fba01b1..e9274822e1a859713711f6d567a09e9f10eac99e 100644
|
| --- a/ui/events/ozone/evdev/input_injector_evdev.cc
|
| +++ b/ui/events/ozone/evdev/input_injector_evdev.cc
|
| @@ -2,13 +2,16 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "ui/events/ozone/evdev/input_injector_evdev.h"
|
| +
|
| +#include <utility>
|
| +
|
| #include "ui/events/event.h"
|
| #include "ui/events/event_utils.h"
|
| #include "ui/events/keycodes/dom/dom_code.h"
|
| #include "ui/events/ozone/evdev/cursor_delegate_evdev.h"
|
| #include "ui/events/ozone/evdev/device_event_dispatcher_evdev.h"
|
| #include "ui/events/ozone/evdev/event_modifiers_evdev.h"
|
| -#include "ui/events/ozone/evdev/input_injector_evdev.h"
|
| #include "ui/events/ozone/evdev/keyboard_evdev.h"
|
| #include "ui/events/ozone/evdev/keyboard_util_evdev.h"
|
|
|
| @@ -23,8 +26,7 @@ const int kDeviceIdForInjection = -1;
|
| InputInjectorEvdev::InputInjectorEvdev(
|
| scoped_ptr<DeviceEventDispatcherEvdev> dispatcher,
|
| CursorDelegateEvdev* cursor)
|
| - : cursor_(cursor), dispatcher_(dispatcher.Pass()) {
|
| -}
|
| + : cursor_(cursor), dispatcher_(std::move(dispatcher)) {}
|
|
|
| InputInjectorEvdev::~InputInjectorEvdev() {
|
| }
|
|
|