| 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 #ifndef BLIMP_CLIENT_CORE_INPUT_BLIMP_INPUT_MANAGER_H_ | 5 #ifndef BLIMP_CLIENT_CORE_INPUT_BLIMP_INPUT_MANAGER_H_ |
| 6 #define BLIMP_CLIENT_CORE_INPUT_BLIMP_INPUT_MANAGER_H_ | 6 #define BLIMP_CLIENT_CORE_INPUT_BLIMP_INPUT_MANAGER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/single_thread_task_runner.h" | 12 #include "base/single_thread_task_runner.h" |
| 13 #include "base/synchronization/waitable_event.h" | 13 #include "base/synchronization/waitable_event.h" |
| 14 #include "base/threading/thread_checker.h" | 14 #include "base/threading/thread_checker.h" |
| 15 #include "third_party/WebKit/public/web/WebInputEvent.h" | 15 #include "third_party/WebKit/public/platform/WebGestureEvent.h" |
| 16 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
| 16 #include "ui/events/gesture_detection/filtered_gesture_provider.h" | 17 #include "ui/events/gesture_detection/filtered_gesture_provider.h" |
| 17 #include "ui/events/gesture_detection/motion_event.h" | 18 #include "ui/events/gesture_detection/motion_event.h" |
| 18 | 19 |
| 19 namespace cc { | 20 namespace cc { |
| 20 class InputHandler; | 21 class InputHandler; |
| 21 } // namespace cc | 22 } // namespace cc |
| 22 | 23 |
| 23 namespace blimp { | 24 namespace blimp { |
| 24 namespace client { | 25 namespace client { |
| 25 class BlimpInputHandlerWrapper; | 26 class BlimpInputHandlerWrapper; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 91 |
| 91 base::WeakPtrFactory<BlimpInputManager> weak_factory_; | 92 base::WeakPtrFactory<BlimpInputManager> weak_factory_; |
| 92 | 93 |
| 93 DISALLOW_COPY_AND_ASSIGN(BlimpInputManager); | 94 DISALLOW_COPY_AND_ASSIGN(BlimpInputManager); |
| 94 }; | 95 }; |
| 95 | 96 |
| 96 } // namespace client | 97 } // namespace client |
| 97 } // namespace blimp | 98 } // namespace blimp |
| 98 | 99 |
| 99 #endif // BLIMP_CLIENT_CORE_INPUT_BLIMP_INPUT_MANAGER_H_ | 100 #endif // BLIMP_CLIENT_CORE_INPUT_BLIMP_INPUT_MANAGER_H_ |
| OLD | NEW |