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

Side by Side Diff: content/browser/renderer_host/input/synthetic_tap_gesture.cc

Issue 1871233002: Move LatencyInfo to ui/latency_info (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix some more gyp issues Created 4 years, 7 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698