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

Side by Side Diff: content/common/input/input_event_ack.cc

Issue 2240273002: Move |DidOverscrollParams| from |content::| to "ui/events/blink" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move DidOverscrollParams to ui:: Created 4 years, 4 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/common/input/input_event_ack.h" 5 #include "content/common/input/input_event_ack.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 namespace content { 9 namespace content {
10 10
11 InputEventAck::InputEventAck( 11 InputEventAck::InputEventAck(
12 blink::WebInputEvent::Type type, 12 blink::WebInputEvent::Type type,
13 InputEventAckState state, 13 InputEventAckState state,
14 const ui::LatencyInfo& latency, 14 const ui::LatencyInfo& latency,
15 std::unique_ptr<content::DidOverscrollParams> overscroll, 15 std::unique_ptr<ui::DidOverscrollParams> overscroll,
16 uint32_t unique_touch_event_id) 16 uint32_t unique_touch_event_id)
17 : type(type), 17 : type(type),
18 state(state), 18 state(state),
19 latency(latency), 19 latency(latency),
20 overscroll(std::move(overscroll)), 20 overscroll(std::move(overscroll)),
21 unique_touch_event_id(unique_touch_event_id) {} 21 unique_touch_event_id(unique_touch_event_id) {}
22 22
23 InputEventAck::InputEventAck(blink::WebInputEvent::Type type, 23 InputEventAck::InputEventAck(blink::WebInputEvent::Type type,
24 InputEventAckState state, 24 InputEventAckState state,
25 const ui::LatencyInfo& latency, 25 const ui::LatencyInfo& latency,
(...skipping 12 matching lines...) Expand all
38 38
39 InputEventAck::InputEventAck() 39 InputEventAck::InputEventAck()
40 : InputEventAck(blink::WebInputEvent::Undefined, 40 : InputEventAck(blink::WebInputEvent::Undefined,
41 INPUT_EVENT_ACK_STATE_UNKNOWN) { 41 INPUT_EVENT_ACK_STATE_UNKNOWN) {
42 } 42 }
43 43
44 InputEventAck::~InputEventAck() { 44 InputEventAck::~InputEventAck() {
45 } 45 }
46 46
47 } // namespace content 47 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698