| Index: content/common/input/input_event_ack.cc
|
| diff --git a/content/common/input/input_event_ack.cc b/content/common/input/input_event_ack.cc
|
| index 76ec577fb9990014e81459a45adf1ff929b54013..27e5aa2ecd69b2c0b7b59016df37c141f863f659 100644
|
| --- a/content/common/input/input_event_ack.cc
|
| +++ b/content/common/input/input_event_ack.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/common/input/input_event_ack.h"
|
|
|
| +#include <utility>
|
| +
|
| namespace content {
|
|
|
| InputEventAck::InputEventAck(
|
| @@ -15,7 +17,7 @@ InputEventAck::InputEventAck(
|
| : type(type),
|
| state(state),
|
| latency(latency),
|
| - overscroll(overscroll.Pass()),
|
| + overscroll(std::move(overscroll)),
|
| unique_touch_event_id(unique_touch_event_id) {}
|
|
|
| InputEventAck::InputEventAck(blink::WebInputEvent::Type type,
|
|
|