| Index: content/browser/renderer_host/input/touch_action_browsertest.cc
|
| diff --git a/content/browser/renderer_host/input/touch_action_browsertest.cc b/content/browser/renderer_host/input/touch_action_browsertest.cc
|
| index f8fc11ac85cd79921056a21559bb2bdba0cc2c1a..72c8bc990866043a7e002bb781187a56cb8c4cfe 100644
|
| --- a/content/browser/renderer_host/input/touch_action_browsertest.cc
|
| +++ b/content/browser/renderer_host/input/touch_action_browsertest.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <utility>
|
| +
|
| #include "base/auto_reset.h"
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| @@ -148,7 +150,7 @@ class TouchActionBrowserTest : public ContentBrowserTest {
|
| scoped_ptr<SyntheticSmoothScrollGesture> gesture(
|
| new SyntheticSmoothScrollGesture(params));
|
| GetWidgetHost()->QueueSyntheticGesture(
|
| - gesture.Pass(),
|
| + std::move(gesture),
|
| base::Bind(&TouchActionBrowserTest::OnSyntheticGestureCompleted,
|
| base::Unretained(this)));
|
|
|
|
|