Index: content/browser/renderer_host/input/synthetic_gesture_controller.h |
diff --git a/content/browser/renderer_host/input/synthetic_gesture_controller.h b/content/browser/renderer_host/input/synthetic_gesture_controller.h |
index aeef18f5024ef28beb29f3e7a270a6c08f2e4a1d..f7b03c2fd795159b0a8dad61a6dee8965a4de6e7 100644 |
--- a/content/browser/renderer_host/input/synthetic_gesture_controller.h |
+++ b/content/browser/renderer_host/input/synthetic_gesture_controller.h |
@@ -60,7 +60,7 @@ class CONTENT_EXPORT SyntheticGestureController { |
~GestureAndCallbackQueue(); |
void Push(scoped_ptr<SyntheticGesture> gesture, |
const OnGestureCompleteCallback& callback) { |
- gestures_.push_back(gesture.release()); |
+ gestures_.push_back(std::move(gesture)); |
callbacks_.push(callback); |
} |
void Pop() { |