| Index: chromeos/cryptohome/homedir_methods_unittest.cc
|
| diff --git a/chromeos/cryptohome/homedir_methods_unittest.cc b/chromeos/cryptohome/homedir_methods_unittest.cc
|
| index f6174add35359b4b25fe44d8bd74c1c21d9d4257..19b039dae99e05185e4811c6ce56f9acc62e4ed9 100644
|
| --- a/chromeos/cryptohome/homedir_methods_unittest.cc
|
| +++ b/chromeos/cryptohome/homedir_methods_unittest.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chromeos/cryptohome/homedir_methods.h"
|
|
|
| #include <stdint.h>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/bind_helpers.h"
|
| @@ -91,7 +92,7 @@ void HomedirMethodsTest::SetUp() {
|
| new chromeos::MockCryptohomeClient);
|
| cryptohome_client_ = cryptohome_client.get();
|
| chromeos::DBusThreadManager::GetSetterForTesting()->SetCryptohomeClient(
|
| - cryptohome_client.Pass());
|
| + std::move(cryptohome_client));
|
| HomedirMethods::Initialize();
|
| }
|
|
|
|
|