| Index: sync/internal_api/public/test/fake_sync_context.h
|
| diff --git a/sync/internal_api/public/test/fake_sync_context.h b/sync/internal_api/public/test/fake_sync_context.h
|
| index 5eb49373e11235ee76e166e8d74001f66cd29652..d4a096db348a5d83ffc5c9160dc2487f94cede44 100644
|
| --- a/sync/internal_api/public/test/fake_sync_context.h
|
| +++ b/sync/internal_api/public/test/fake_sync_context.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef SYNC_INTERNAL_API_PUBLIC_TEST_FAKE_SYNC_CONTEXT_H_
|
| #define SYNC_INTERNAL_API_PUBLIC_TEST_FAKE_SYNC_CONTEXT_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "sync/internal_api/public/sync_context.h"
|
|
|
| namespace syncer_v2 {
|
| @@ -15,8 +17,9 @@ class FakeSyncContext : public SyncContext {
|
| FakeSyncContext();
|
| ~FakeSyncContext() override;
|
|
|
| - void ConnectType(syncer::ModelType type,
|
| - scoped_ptr<ActivationContext> activation_context) override;
|
| + void ConnectType(
|
| + syncer::ModelType type,
|
| + std::unique_ptr<ActivationContext> activation_context) override;
|
| void DisconnectType(syncer::ModelType type) override;
|
| };
|
|
|
|
|