| Index: components/safe_browsing_db/v4_store.h
|
| diff --git a/components/safe_browsing_db/v4_store.h b/components/safe_browsing_db/v4_store.h
|
| index d5144d300946c9fe191382fa8a86b36007a5acdc..bbafbe73dfafe2f8f6957bceed821acc46e0101e 100644
|
| --- a/components/safe_browsing_db/v4_store.h
|
| +++ b/components/safe_browsing_db/v4_store.h
|
| @@ -102,7 +102,7 @@ class V4Store {
|
|
|
| const base::FilePath& store_path() const { return store_path_; }
|
|
|
| - void ApplyUpdate(const ListUpdateResponse&,
|
| + void ApplyUpdate(std::unique_ptr<ListUpdateResponse> response,
|
| const scoped_refptr<base::SingleThreadTaskRunner>&,
|
| UpdatedStoreReadyCallback);
|
|
|
| @@ -133,7 +133,8 @@ class V4Store {
|
| StoreReadResult ReadFromDisk();
|
|
|
| // Writes the FULL_UPDATE |response| to disk as a V4StoreFileFormat proto.
|
| - StoreWriteResult WriteToDisk(const ListUpdateResponse& response) const;
|
| + StoreWriteResult WriteToDisk(
|
| + std::unique_ptr<ListUpdateResponse> response) const;
|
|
|
| // The state of the store as returned by the PVer4 server in the last applied
|
| // update response.
|
|
|