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

Unified Diff: third_party/WebKit/Source/core/events/DragEvent.cpp

Issue 2542693002: Use WTF::TimeTicks to represent timestamp in Platform/Core event types (Closed)
Patch Set: rebase Created 4 years 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
« no previous file with comments | « third_party/WebKit/Source/core/events/DragEvent.h ('k') | third_party/WebKit/Source/core/events/Event.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/events/DragEvent.cpp
diff --git a/third_party/WebKit/Source/core/events/DragEvent.cpp b/third_party/WebKit/Source/core/events/DragEvent.cpp
index e55493f5e512eb175435b5439bb6f29bc80070d7..61e44d418bf8515616acf9a33fbe608addc54700 100644
--- a/third_party/WebKit/Source/core/events/DragEvent.cpp
+++ b/third_party/WebKit/Source/core/events/DragEvent.cpp
@@ -26,7 +26,7 @@ DragEvent* DragEvent::create(
short button,
unsigned short buttons,
EventTarget* relatedTarget,
- double platformTimeStamp,
+ TimeTicks platformTimeStamp,
DataTransfer* dataTransfer,
PlatformMouseEvent::SyntheticEventType syntheticEventType) {
return new DragEvent(type, canBubble, cancelable, view, detail, screenX,
@@ -55,7 +55,7 @@ DragEvent::DragEvent(const AtomicString& eventType,
short button,
unsigned short buttons,
EventTarget* relatedTarget,
- double platformTimeStamp,
+ TimeTicks platformTimeStamp,
DataTransfer* dataTransfer,
PlatformMouseEvent::SyntheticEventType syntheticEventType)
: MouseEvent(
« no previous file with comments | « third_party/WebKit/Source/core/events/DragEvent.h ('k') | third_party/WebKit/Source/core/events/Event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698