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

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

Issue 2542693002: Use WTF::TimeTicks to represent timestamp in Platform/Core event types (Closed)
Patch Set: Add TimeTicks::{To,In}Seconds utility functions 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
Index: third_party/WebKit/Source/core/events/DragEvent.h
diff --git a/third_party/WebKit/Source/core/events/DragEvent.h b/third_party/WebKit/Source/core/events/DragEvent.h
index a355cf30937ca88660b1719055b2a21fbd7fc1a9..e1d6fcb85864b3afb33daa0892fff1ffce2fc61a 100644
--- a/third_party/WebKit/Source/core/events/DragEvent.h
+++ b/third_party/WebKit/Source/core/events/DragEvent.h
@@ -38,7 +38,7 @@ class CORE_EXPORT DragEvent final : public MouseEvent {
short button,
unsigned short buttons,
EventTarget* relatedTarget,
- double platformTimeStamp,
+ TimeTicks platformTimeStamp,
DataTransfer*,
PlatformMouseEvent::SyntheticEventType =
PlatformMouseEvent::RealOrIndistinguishable);
@@ -77,7 +77,7 @@ class CORE_EXPORT DragEvent final : public MouseEvent {
short button,
unsigned short buttons,
EventTarget* relatedTarget,
- double platformTimeStamp,
+ TimeTicks platformTimeStamp,
DataTransfer*,
PlatformMouseEvent::SyntheticEventType);

Powered by Google App Engine
This is Rietveld 408576698