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

Side by Side Diff: third_party/WebKit/Source/core/input/KeyboardEventManager.h

Issue 2818083002: Rewrite references to "wtf/" to "platform/wtf/" in the rest of core/. (Closed)
Patch Set: Rebase. Created 3 years, 8 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 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/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 #include "platform/heap/Visitor.h" 10 #include "platform/heap/Visitor.h"
11 #include "platform/wtf/Allocator.h"
11 #include "public/platform/WebFocusType.h" 12 #include "public/platform/WebFocusType.h"
12 #include "public/platform/WebInputEvent.h" 13 #include "public/platform/WebInputEvent.h"
13 #include "public/platform/WebInputEventResult.h" 14 #include "public/platform/WebInputEventResult.h"
14 #include "wtf/Allocator.h"
15 15
16 namespace blink { 16 namespace blink {
17 17
18 class KeyboardEvent; 18 class KeyboardEvent;
19 class LocalFrame; 19 class LocalFrame;
20 class ScrollManager; 20 class ScrollManager;
21 class WebKeyboardEvent; 21 class WebKeyboardEvent;
22 22
23 enum class OverrideCapsLockState { kDefault, kOn, kOff }; 23 enum class OverrideCapsLockState { kDefault, kOn, kOff };
24 24
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 void DefaultArrowEventHandler(KeyboardEvent*, Node*); 58 void DefaultArrowEventHandler(KeyboardEvent*, Node*);
59 59
60 const Member<LocalFrame> frame_; 60 const Member<LocalFrame> frame_;
61 61
62 Member<ScrollManager> scroll_manager_; 62 Member<ScrollManager> scroll_manager_;
63 }; 63 };
64 64
65 } // namespace blink 65 } // namespace blink
66 66
67 #endif // KeyboardEventManager_h 67 #endif // KeyboardEventManager_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/input/GestureManager.h ('k') | third_party/WebKit/Source/core/input/MouseEventManager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698