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

Side by Side Diff: blimp/client/core/input/blimp_input_manager.h

Issue 2382733007: Add BlimpDocument, pull out functions in BlimpCompositor. (Closed)
Patch Set: Clean up build file. Created 4 years, 2 months 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 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/WebInputEvent.h"
16 #include "ui/events/gesture_detection/filtered_gesture_provider.h" 16 #include "ui/events/gesture_detection/filtered_gesture_provider.h"
17 #include "ui/events/gesture_detection/motion_event.h" 17 #include "ui/events/gesture_detection/motion_event.h"
18 18
19 namespace cc { 19 namespace cc {
20 class InputHandler; 20 class InputHandler;
21 } // namespace cc 21 } // namespace cc
22 22
23 namespace blimp { 23 namespace blimp {
24 namespace client { 24 namespace client {
25 class BlimpInputHandlerWrapper; 25 class BlimpInputHandlerWrapper;
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 90
91 base::WeakPtrFactory<BlimpInputManager> weak_factory_; 91 base::WeakPtrFactory<BlimpInputManager> weak_factory_;
92 92
93 DISALLOW_COPY_AND_ASSIGN(BlimpInputManager); 93 DISALLOW_COPY_AND_ASSIGN(BlimpInputManager);
94 }; 94 };
95 95
96 } // namespace client 96 } // namespace client
97 } // namespace blimp 97 } // namespace blimp
98 98
99 #endif // BLIMP_CLIENT_CORE_INPUT_BLIMP_INPUT_MANAGER_H_ 99 #endif // BLIMP_CLIENT_CORE_INPUT_BLIMP_INPUT_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698