| Index: components/sync/model/fake_model_type_sync_bridge.h
|
| diff --git a/components/sync/model/fake_model_type_sync_bridge.h b/components/sync/model/fake_model_type_sync_bridge.h
|
| index 07759719e5eecce3dc27a052bd0e4155bb04ef47..f71b347296c0ef41dd523ccdfe8ae4be8f23772b 100644
|
| --- a/components/sync/model/fake_model_type_sync_bridge.h
|
| +++ b/components/sync/model/fake_model_type_sync_bridge.h
|
| @@ -125,6 +125,11 @@ class FakeModelTypeSyncBridge : public ModelTypeSyncBridge {
|
| // Sets an error that the next fallible call to the bridge will generate.
|
| void ErrorOnNextCall();
|
|
|
| + // It is intentionally very difficult to copy an EntityData, as in normal code
|
| + // we never want to. However, since we store the data as an EntityData for the
|
| + // test code here, this function is needed to manually copy it.
|
| + static std::unique_ptr<EntityData> CopyEntityData(const EntityData& old_data);
|
| +
|
| const Store& db() { return *db_; }
|
|
|
| protected:
|
|
|