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

Unified Diff: chrome/browser/renderer_host/render_widget_host_view_views.cc

Issue 6175006: touch: Set the timestamp for the touchevent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/render_widget_host_view_views.cc
diff --git a/chrome/browser/renderer_host/render_widget_host_view_views.cc b/chrome/browser/renderer_host/render_widget_host_view_views.cc
index 55fc12ca295692e98b604a8578c05e9769db0319..9049fc79ae7d7b4c3e418377b22ee16b400157d6 100644
--- a/chrome/browser/renderer_host/render_widget_host_view_views.cc
+++ b/chrome/browser/renderer_host/render_widget_host_view_views.cc
@@ -721,6 +721,7 @@ bool RenderWidgetHostViewViews::OnTouchEvent(const views::TouchEvent& e) {
// Update the type of the touch event.
touch_event_.type = TouchEventTypeFromEvent(&e);
+ touch_event_.timeStampSeconds = base::Time::Now().ToDoubleT();
rjkroege 2011/01/12 19:06:26 I would prefer if you used the time from the origi
sadrul 2011/01/12 19:44:55 At the moment, this doesn't work, since |views::Ev
// The event and all the touches have been updated. Dispatch.
host_->ForwardTouchEvent(touch_event_);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698