| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_ |
| 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_ | 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_ |
| 7 | 7 |
| 8 #include "base/files/important_file_writer.h" | 8 #include "base/files/important_file_writer.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "chrome/browser/bookmarks/bookmark_index.h" | |
| 12 | 11 |
| 12 class BookmarkIndex; |
| 13 class BookmarkModel; | 13 class BookmarkModel; |
| 14 class BookmarkPermanentNode; | 14 class BookmarkPermanentNode; |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 class SequencedTaskRunner; | 17 class SequencedTaskRunner; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace content { | 20 namespace content { |
| 21 class BrowserContext; | 21 class BrowserContext; |
| 22 } | 22 } |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 // See class description of BookmarkLoadDetails for details on this. | 145 // See class description of BookmarkLoadDetails for details on this. |
| 146 scoped_ptr<BookmarkLoadDetails> details_; | 146 scoped_ptr<BookmarkLoadDetails> details_; |
| 147 | 147 |
| 148 // Sequenced task runner where file I/O operations will be performed at. | 148 // Sequenced task runner where file I/O operations will be performed at. |
| 149 scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner_; | 149 scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner_; |
| 150 | 150 |
| 151 DISALLOW_COPY_AND_ASSIGN(BookmarkStorage); | 151 DISALLOW_COPY_AND_ASSIGN(BookmarkStorage); |
| 152 }; | 152 }; |
| 153 | 153 |
| 154 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_ | 154 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_ |
| OLD | NEW |