OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_MODEL_H_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ |
6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ | 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 #include <set> | 10 #include <set> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/lock.h" | 13 #include "base/lock.h" |
14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
15 #include "base/waitable_event.h" | 15 #include "base/waitable_event.h" |
16 #include "chrome/browser/bookmarks/bookmark_service.h" | 16 #include "chrome/browser/bookmarks/bookmark_service.h" |
17 #include "chrome/browser/bookmarks/bookmark_storage.h" | 17 #include "chrome/browser/bookmarks/bookmark_storage.h" |
18 #include "chrome/browser/cancelable_request.h" | 18 #include "chrome/browser/cancelable_request.h" |
19 #include "chrome/browser/history/history.h" | 19 #include "chrome/browser/history/history.h" |
20 #include "chrome/browser/history/history_types.h" | 20 #include "chrome/browser/history/history_types.h" |
21 #include "chrome/common/notification_observer.h" | 21 #include "chrome/common/notification_observer.h" |
22 #include "googleurl/src/gurl.h" | 22 #include "googleurl/src/gurl.h" |
23 #include "skia/include/SkBitmap.h" | 23 #include "third_party/skia/include/core/SkBitmap.h" |
24 #include "testing/gtest/include/gtest/gtest_prod.h" | 24 #include "testing/gtest/include/gtest/gtest_prod.h" |
25 #include "views/controls/tree/tree_node_model.h" | 25 #include "views/controls/tree/tree_node_model.h" |
26 | 26 |
27 class BookmarkEditorView; | 27 class BookmarkEditorView; |
28 class BookmarkModel; | 28 class BookmarkModel; |
29 class BookmarkCodec; | 29 class BookmarkCodec; |
30 class Profile; | 30 class Profile; |
31 | 31 |
32 namespace history { | 32 namespace history { |
33 class StarredURLDatabase; | 33 class StarredURLDatabase; |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 | 425 |
426 // Reads/writes bookmarks to disk. | 426 // Reads/writes bookmarks to disk. |
427 scoped_refptr<BookmarkStorage> store_; | 427 scoped_refptr<BookmarkStorage> store_; |
428 | 428 |
429 base::WaitableEvent loaded_signal_; | 429 base::WaitableEvent loaded_signal_; |
430 | 430 |
431 DISALLOW_COPY_AND_ASSIGN(BookmarkModel); | 431 DISALLOW_COPY_AND_ASSIGN(BookmarkModel); |
432 }; | 432 }; |
433 | 433 |
434 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ | 434 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ |
OLD | NEW |