Index: content/browser/vibration_manager_integration_browsertest.cc |
diff --git a/content/browser/vibration_manager_integration_browsertest.cc b/content/browser/vibration_manager_integration_browsertest.cc |
index 562376105a3dd173724a06e854b417b4e92850bc..0a79119c6d9523ce4772969482a827b5eaef072f 100644 |
--- a/content/browser/vibration_manager_integration_browsertest.cc |
+++ b/content/browser/vibration_manager_integration_browsertest.cc |
@@ -3,6 +3,7 @@ |
// found in the LICENSE file. |
#include <stdint.h> |
+#include <utility> |
#include "base/macros.h" |
#include "build/build_config.h" |
@@ -44,12 +45,12 @@ void ResetGlobalValues() { |
class FakeVibrationManager : public device::VibrationManager { |
public: |
static void Create(mojo::InterfaceRequest<VibrationManager> request) { |
- new FakeVibrationManager(request.Pass()); |
+ new FakeVibrationManager(std::move(request)); |
} |
private: |
FakeVibrationManager(mojo::InterfaceRequest<VibrationManager> request) |
- : binding_(this, request.Pass()) {} |
+ : binding_(this, std::move(request)) {} |
~FakeVibrationManager() override {} |
void Vibrate(int64_t milliseconds) override { |