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

Side by Side Diff: third_party/WebKit/Source/core/input/MouseEventManager.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 MouseEventManager_h 5 #ifndef MouseEventManager_h
6 #define MouseEventManager_h 6 #define MouseEventManager_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/dom/SynchronousMutationObserver.h" 9 #include "core/dom/SynchronousMutationObserver.h"
10 #include "core/input/BoundaryEventDispatcher.h" 10 #include "core/input/BoundaryEventDispatcher.h"
11 #include "core/page/DragActions.h" 11 #include "core/page/DragActions.h"
12 #include "core/page/EventWithHitTestResults.h" 12 #include "core/page/EventWithHitTestResults.h"
13 #include "platform/Timer.h" 13 #include "platform/Timer.h"
14 #include "platform/wtf/Allocator.h"
15 #include "platform/wtf/Time.h"
14 #include "public/platform/WebInputEventResult.h" 16 #include "public/platform/WebInputEventResult.h"
15 #include "public/platform/WebMouseEvent.h" 17 #include "public/platform/WebMouseEvent.h"
16 #include "wtf/Allocator.h"
17 #include "wtf/Time.h"
18 18
19 namespace blink { 19 namespace blink {
20 20
21 class ContainerNode; 21 class ContainerNode;
22 class DragState; 22 class DragState;
23 class DataTransfer; 23 class DataTransfer;
24 class Element; 24 class Element;
25 class FloatQuad; 25 class FloatQuad;
26 class HitTestResult; 26 class HitTestResult;
27 class InputDeviceCapabilities; 27 class InputDeviceCapabilities;
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 WebMouseEvent mouse_down_; 232 WebMouseEvent mouse_down_;
233 233
234 LayoutPoint drag_start_pos_; 234 LayoutPoint drag_start_pos_;
235 235
236 TaskRunnerTimer<MouseEventManager> fake_mouse_move_event_timer_; 236 TaskRunnerTimer<MouseEventManager> fake_mouse_move_event_timer_;
237 }; 237 };
238 238
239 } // namespace blink 239 } // namespace blink
240 240
241 #endif // MouseEventManager_h 241 #endif // MouseEventManager_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698