| Index: components/sync/syncable/entry_kernel.h
|
| diff --git a/components/sync/syncable/entry_kernel.h b/components/sync/syncable/entry_kernel.h
|
| index 2be38b63eefba83c1a0fcfe43f4a7c37794c9872..fa57de93e3e7111b077dcb95cd3a9dc666d5be75 100644
|
| --- a/components/sync/syncable/entry_kernel.h
|
| +++ b/components/sync/syncable/entry_kernel.h
|
| @@ -372,11 +372,11 @@ struct EntryKernel {
|
| bool ShouldMaintainHierarchy() const;
|
|
|
| // Dumps all kernel info into a DictionaryValue and returns it.
|
| - // Transfers ownership of the DictionaryValue to the caller.
|
| // Note: |cryptographer| is an optional parameter for use in decrypting
|
| // encrypted specifics. If it is null or the specifics are not decryptsble,
|
| // they will be serialized as empty proto's.
|
| - base::DictionaryValue* ToValue(Cryptographer* cryptographer) const;
|
| + std::unique_ptr<base::DictionaryValue> ToValue(
|
| + Cryptographer* cryptographer) const;
|
|
|
| size_t EstimateMemoryUsage() const;
|
|
|
|
|