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

Unified Diff: third_party/WebKit/Source/web/WebFrameWidgetBase.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
Index: third_party/WebKit/Source/web/WebFrameWidgetBase.cpp
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetBase.cpp b/third_party/WebKit/Source/web/WebFrameWidgetBase.cpp
index e63cb98bd4277aa691fc90d8929376fe88fd00c9..2e10cd3a1cf3ea77e8a182b637b5d1d1ee45b4a4 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetBase.cpp
+++ b/third_party/WebKit/Source/web/WebFrameWidgetBase.cpp
@@ -126,8 +126,7 @@ void WebFrameWidgetBase::dragSourceEndedAt(const WebPoint& pointInViewport,
PlatformMouseEvent pme(
pointInRootFrame, screenPoint, WebPointerProperties::Button::Left,
PlatformEvent::MouseMoved, 0, PlatformEvent::NoModifiers,
- PlatformMouseEvent::RealOrIndistinguishable,
- WTF::monotonicallyIncreasingTime());
+ PlatformMouseEvent::RealOrIndistinguishable, TimeTicks::Now());
toCoreFrame(localRoot())
->eventHandler()
.dragSourceEndedAt(pme, static_cast<DragOperation>(operation));
« no previous file with comments | « third_party/WebKit/Source/platform/PlatformMouseEvent.h ('k') | third_party/WebKit/Source/web/WebInputEventConversion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698