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 #pragma once | |
8 | 7 |
9 #include "base/file_path.h" | 8 #include "base/file_path.h" |
10 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
12 #include "chrome/browser/bookmarks/bookmark_index.h" | 11 #include "chrome/browser/bookmarks/bookmark_index.h" |
13 #include "chrome/common/important_file_writer.h" | 12 #include "chrome/common/important_file_writer.h" |
14 #include "content/public/browser/notification_observer.h" | 13 #include "content/public/browser/notification_observer.h" |
15 #include "content/public/browser/notification_registrar.h" | 14 #include "content/public/browser/notification_registrar.h" |
16 | 15 |
17 class BookmarkModel; | 16 class BookmarkModel; |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 // Path to temporary file created during migrating bookmarks from history. | 162 // Path to temporary file created during migrating bookmarks from history. |
164 const FilePath tmp_history_path_; | 163 const FilePath tmp_history_path_; |
165 | 164 |
166 // See class description of BookmarkLoadDetails for details on this. | 165 // See class description of BookmarkLoadDetails for details on this. |
167 scoped_ptr<BookmarkLoadDetails> details_; | 166 scoped_ptr<BookmarkLoadDetails> details_; |
168 | 167 |
169 DISALLOW_COPY_AND_ASSIGN(BookmarkStorage); | 168 DISALLOW_COPY_AND_ASSIGN(BookmarkStorage); |
170 }; | 169 }; |
171 | 170 |
172 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_ | 171 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_STORAGE_H_ |
OLD | NEW |