| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_STORAGE_H_ | 5 #ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_STORAGE_H_ |
| 6 #define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_STORAGE_H_ | 6 #define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_STORAGE_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/files/important_file_writer.h" | 9 #include "base/files/important_file_writer.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "components/bookmarks/core/browser/bookmark_node.h" | 12 #include "components/bookmarks/browser/bookmark_node.h" |
| 13 | 13 |
| 14 class BookmarkIndex; | 14 class BookmarkIndex; |
| 15 class BookmarkModel; | 15 class BookmarkModel; |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class SequencedTaskRunner; | 18 class SequencedTaskRunner; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 class BrowserContext; | 22 class BrowserContext; |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 | 160 |
| 161 // See class description of BookmarkLoadDetails for details on this. | 161 // See class description of BookmarkLoadDetails for details on this. |
| 162 scoped_ptr<BookmarkLoadDetails> details_; | 162 scoped_ptr<BookmarkLoadDetails> details_; |
| 163 | 163 |
| 164 // Sequenced task runner where file I/O operations will be performed at. | 164 // Sequenced task runner where file I/O operations will be performed at. |
| 165 scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner_; | 165 scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner_; |
| 166 | 166 |
| 167 DISALLOW_COPY_AND_ASSIGN(BookmarkStorage); | 167 DISALLOW_COPY_AND_ASSIGN(BookmarkStorage); |
| 168 }; | 168 }; |
| 169 | 169 |
| 170 #endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_STORAGE_H_ | 170 #endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_STORAGE_H_ |
| OLD | NEW |