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

Unified Diff: components/exo/touch_unittest.cc

Issue 1975533002: Change ui::Event::time_stamp from TimeDelta to TimeTicks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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 | « components/exo/touch_delegate.h ('k') | components/exo/wayland/server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/exo/touch_unittest.cc
diff --git a/components/exo/touch_unittest.cc b/components/exo/touch_unittest.cc
index 9d6e5f5af0c16b3b424a045c0ac7459ec567948c..840259bc04e71ebd5cab2c7519ae674f52533ed6 100644
--- a/components/exo/touch_unittest.cc
+++ b/components/exo/touch_unittest.cc
@@ -29,9 +29,9 @@ class MockTouchDelegate : public TouchDelegate {
MOCK_METHOD1(OnTouchDestroying, void(Touch*));
MOCK_CONST_METHOD1(CanAcceptTouchEventsForSurface, bool(Surface*));
MOCK_METHOD4(OnTouchDown,
- void(Surface*, base::TimeDelta, int, const gfx::Point&));
- MOCK_METHOD2(OnTouchUp, void(base::TimeDelta, int));
- MOCK_METHOD3(OnTouchMotion, void(base::TimeDelta, int, const gfx::Point&));
+ void(Surface*, base::TimeTicks, int, const gfx::Point&));
+ MOCK_METHOD2(OnTouchUp, void(base::TimeTicks, int));
+ MOCK_METHOD3(OnTouchMotion, void(base::TimeTicks, int, const gfx::Point&));
MOCK_METHOD0(OnTouchCancel, void());
};
« no previous file with comments | « components/exo/touch_delegate.h ('k') | components/exo/wayland/server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698