OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 KeyboardEventManager_h | 5 #ifndef KeyboardEventManager_h |
6 #define KeyboardEventManager_h | 6 #define KeyboardEventManager_h |
7 | 7 |
8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
9 #include "platform/PlatformEvent.h" | |
10 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
11 #include "platform/heap/Visitor.h" | 10 #include "platform/heap/Visitor.h" |
12 #include "public/platform/WebFocusType.h" | 11 #include "public/platform/WebFocusType.h" |
13 #include "public/platform/WebInputEvent.h" | 12 #include "public/platform/WebInputEvent.h" |
14 #include "public/platform/WebInputEventResult.h" | 13 #include "public/platform/WebInputEventResult.h" |
15 #include "wtf/Allocator.h" | 14 #include "wtf/Allocator.h" |
16 | 15 |
17 namespace blink { | 16 namespace blink { |
18 | 17 |
19 class KeyboardEvent; | 18 class KeyboardEvent; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 void defaultArrowEventHandler(KeyboardEvent*, Node*); | 58 void defaultArrowEventHandler(KeyboardEvent*, Node*); |
60 | 59 |
61 const Member<LocalFrame> m_frame; | 60 const Member<LocalFrame> m_frame; |
62 | 61 |
63 Member<ScrollManager> m_scrollManager; | 62 Member<ScrollManager> m_scrollManager; |
64 }; | 63 }; |
65 | 64 |
66 } // namespace blink | 65 } // namespace blink |
67 | 66 |
68 #endif // KeyboardEventManager_h | 67 #endif // KeyboardEventManager_h |
OLD | NEW |