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

Unified Diff: third_party/WebKit/Source/core/page/DragController.h

Issue 2650403006: Remove PlatformMouseEvent and use WebMouseEvent instead (Closed)
Patch Set: Fix nits Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/page/DragController.h
diff --git a/third_party/WebKit/Source/core/page/DragController.h b/third_party/WebKit/Source/core/page/DragController.h
index 3d28be6cf3b6d2de603645a06a5b98c5c6c2b213..763f6576dcffc8644d4937aa16b6f0e788e7db85 100644
--- a/third_party/WebKit/Source/core/page/DragController.h
+++ b/third_party/WebKit/Source/core/page/DragController.h
@@ -47,7 +47,7 @@ class FrameSelection;
class HTMLInputElement;
class Node;
class Page;
-class PlatformMouseEvent;
+class WebMouseEvent;
class CORE_EXPORT DragController final
: public GarbageCollected<DragController> {
@@ -76,7 +76,7 @@ class CORE_EXPORT DragController final
const IntPoint& dragOrigin);
bool startDrag(LocalFrame* src,
const DragState&,
- const PlatformMouseEvent& dragEvent,
+ const WebMouseEvent& dragEvent,
const IntPoint& dragOrigin);
DECLARE_TRACE();

Powered by Google App Engine
This is Rietveld 408576698