Index: components/wifi_sync/wifi_credential_syncable_service_unittest.cc |
diff --git a/components/wifi_sync/wifi_credential_syncable_service_unittest.cc b/components/wifi_sync/wifi_credential_syncable_service_unittest.cc |
index 81132c0b2144c63ee11bbd41e9db8797a8b5c3b1..3b15dc772511e86f9610b33360ce27584a425a10 100644 |
--- a/components/wifi_sync/wifi_credential_syncable_service_unittest.cc |
+++ b/components/wifi_sync/wifi_credential_syncable_service_unittest.cc |
@@ -5,8 +5,8 @@ |
#include "components/wifi_sync/wifi_credential_syncable_service.h" |
#include <stdint.h> |
- |
#include <string> |
+#include <utility> |
#include <vector> |
#include "base/macros.h" |
@@ -144,7 +144,8 @@ class WifiCredentialSyncableServiceTest : public testing::Test { |
change_processor_ = change_processor.get(); |
syncable_service_->MergeDataAndStartSyncing( |
syncer::WIFI_CREDENTIALS, syncer::SyncDataList(), |
- change_processor.Pass(), make_scoped_ptr(new SyncErrorFactoryMock())); |
+ std::move(change_processor), |
+ make_scoped_ptr(new SyncErrorFactoryMock())); |
} |
private: |