| Index: chrome/browser/sync/chrome_sync_client.cc
|
| diff --git a/chrome/browser/sync/chrome_sync_client.cc b/chrome/browser/sync/chrome_sync_client.cc
|
| index 17f3c4018c915fb9c776922a3ad354e1ec56a265..c34582637e4467e274aad8706b1c5aff019fa41d 100644
|
| --- a/chrome/browser/sync/chrome_sync_client.cc
|
| +++ b/chrome/browser/sync/chrome_sync_client.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/browser/sync/chrome_sync_client.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| #include "base/macros.h"
|
| @@ -488,7 +490,7 @@ void ChromeSyncClient::SetBrowsingDataRemoverObserverForTesting(
|
|
|
| void ChromeSyncClient::SetSyncApiComponentFactoryForTesting(
|
| scoped_ptr<sync_driver::SyncApiComponentFactory> component_factory) {
|
| - component_factory_ = component_factory.Pass();
|
| + component_factory_ = std::move(component_factory);
|
| }
|
|
|
| void ChromeSyncClient::RegisterDesktopDataTypes(
|
|
|