| Index: components/bookmarks/browser/bookmark_storage.h
|
| diff --git a/components/bookmarks/browser/bookmark_storage.h b/components/bookmarks/browser/bookmark_storage.h
|
| index 39639fa30cee1488b6dbd289b0a61a2d2cfa1590..f7eee8cb5a93a54abec7041b164703e6c71957b8 100644
|
| --- a/components/bookmarks/browser/bookmark_storage.h
|
| +++ b/components/bookmarks/browser/bookmark_storage.h
|
| @@ -159,7 +159,7 @@
|
| void BookmarkModelDeleted();
|
|
|
| // Callback from backend after loading the bookmark file.
|
| - void OnLoadFinished(scoped_ptr<BookmarkLoadDetails> details);
|
| + void OnLoadFinished();
|
|
|
| // ImportantFileWriter::DataSerializer implementation.
|
| virtual bool SerializeData(std::string* output) OVERRIDE;
|
| @@ -175,6 +175,9 @@
|
| // Helper to write bookmark data safely.
|
| base::ImportantFileWriter writer_;
|
|
|
| + // See class description of BookmarkLoadDetails for details on this.
|
| + scoped_ptr<BookmarkLoadDetails> details_;
|
| +
|
| // Sequenced task runner where file I/O operations will be performed at.
|
| scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner_;
|
|
|
|
|