| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/renderer_host/input/synthetic_tap_gesture.h" | 5 #include "content/browser/renderer_host/input/synthetic_tap_gesture.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "third_party/WebKit/public/web/WebInputEvent.h" | 8 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 9 #include "ui/events/latency_info.h" | 9 #include "ui/latency_info/latency_info.h" |
| 10 | 10 |
| 11 namespace content { | 11 namespace content { |
| 12 | 12 |
| 13 SyntheticTapGesture::SyntheticTapGesture( | 13 SyntheticTapGesture::SyntheticTapGesture( |
| 14 const SyntheticTapGestureParams& params) | 14 const SyntheticTapGestureParams& params) |
| 15 : params_(params), | 15 : params_(params), |
| 16 gesture_source_type_(SyntheticGestureParams::DEFAULT_INPUT), | 16 gesture_source_type_(SyntheticGestureParams::DEFAULT_INPUT), |
| 17 state_(SETUP) { | 17 state_(SETUP) { |
| 18 DCHECK_GE(params_.duration_ms, 0); | 18 DCHECK_GE(params_.duration_ms, 0); |
| 19 } | 19 } |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 case DONE: | 74 case DONE: |
| 75 NOTREACHED() << "State DONE invalid for synthetic tap gesture."; | 75 NOTREACHED() << "State DONE invalid for synthetic tap gesture."; |
| 76 } | 76 } |
| 77 } | 77 } |
| 78 | 78 |
| 79 base::TimeDelta SyntheticTapGesture::GetDuration() const { | 79 base::TimeDelta SyntheticTapGesture::GetDuration() const { |
| 80 return base::TimeDelta::FromMilliseconds(params_.duration_ms); | 80 return base::TimeDelta::FromMilliseconds(params_.duration_ms); |
| 81 } | 81 } |
| 82 | 82 |
| 83 } // namespace content | 83 } // namespace content |
| OLD | NEW |