| Index: ash/touch/touch_uma.cc | 
| diff --git a/ash/touch/touch_uma.cc b/ash/touch/touch_uma.cc | 
| index 4dbb2857de6c64e715873329f4d7c5754d79a416..c64ffdab17b3581537af697f82d13ef449d95d2e 100644 | 
| --- a/ash/touch/touch_uma.cc | 
| +++ b/ash/touch/touch_uma.cc | 
| @@ -25,20 +25,20 @@ namespace { | 
|  | 
| struct WindowTouchDetails { | 
| // Move and start times of the touch points. The key is the touch-id. | 
| -  std::map<int, base::TimeDelta> last_move_time_; | 
| -  std::map<int, base::TimeDelta> last_start_time_; | 
| +  std::map<int, base::TimeTicks> last_move_time_; | 
| +  std::map<int, base::TimeTicks> last_start_time_; | 
|  | 
| // The first and last positions of the touch points. | 
| std::map<int, gfx::Point> start_touch_position_; | 
| std::map<int, gfx::Point> last_touch_position_; | 
|  | 
| // Last time-stamp of the last touch-end event. | 
| -  base::TimeDelta last_release_time_; | 
| +  base::TimeTicks last_release_time_; | 
|  | 
| // Stores the time of the last touch released on this window (if there was a | 
| // multi-touch gesture on the window, then this is the release-time of the | 
| // last touch on the window). | 
| -  base::TimeDelta last_mt_time_; | 
| +  base::TimeTicks last_mt_time_; | 
| }; | 
|  | 
| DEFINE_OWNED_WINDOW_PROPERTY_KEY(WindowTouchDetails, | 
|  |