| Index: chrome/browser/sync/test/integration/passwords_helper.cc
|
| diff --git a/chrome/browser/sync/test/integration/passwords_helper.cc b/chrome/browser/sync/test/integration/passwords_helper.cc
|
| index e6f815641e7b159abc142a31303fb26009daee1b..e24fef4a6ebe320f697902789d1ed68ebe989270 100644
|
| --- a/chrome/browser/sync/test/integration/passwords_helper.cc
|
| +++ b/chrome/browser/sync/test/integration/passwords_helper.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/sync/test/integration/passwords_helper.h"
|
|
|
| #include <sstream>
|
| +#include <utility>
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| @@ -52,7 +53,7 @@ class PasswordStoreConsumerHelper
|
| base::MessageLoopForUI::current()->QuitWhenIdle();
|
| }
|
|
|
| - ScopedVector<PasswordForm> result() { return result_.Pass(); }
|
| + ScopedVector<PasswordForm> result() { return std::move(result_); }
|
|
|
| private:
|
| ScopedVector<PasswordForm> result_;
|
|
|