Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2070)

Side by Side Diff: chrome/browser/bookmarks/bookmark_model.h

Issue 3027041: Remove obviously unneeded forward declarations in chrome/browser/[abef]*/*.h. (Closed)
Patch Set: oops, missed one previously Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #pragma once 7 #pragma once
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
11 #include <set> 11 #include <set>
12 #include <vector> 12 #include <vector>
13 13
14 #include "app/tree_node_model.h" 14 #include "app/tree_node_model.h"
15 #include "base/lock.h" 15 #include "base/lock.h"
16 #include "base/observer_list.h" 16 #include "base/observer_list.h"
17 #include "base/string16.h" 17 #include "base/string16.h"
18 #include "base/waitable_event.h" 18 #include "base/waitable_event.h"
19 #include "chrome/browser/bookmarks/bookmark_model_observer.h" 19 #include "chrome/browser/bookmarks/bookmark_model_observer.h"
20 #include "chrome/browser/bookmarks/bookmark_service.h" 20 #include "chrome/browser/bookmarks/bookmark_service.h"
21 #include "chrome/browser/cancelable_request.h" 21 #include "chrome/browser/cancelable_request.h"
22 #include "chrome/browser/favicon_service.h" 22 #include "chrome/browser/favicon_service.h"
23 #include "chrome/browser/history/history.h" 23 #include "chrome/browser/history/history.h"
24 #include "chrome/browser/history/history_types.h" 24 #include "chrome/browser/history/history_types.h"
25 #include "chrome/common/notification_registrar.h" 25 #include "chrome/common/notification_registrar.h"
26 #include "googleurl/src/gurl.h" 26 #include "googleurl/src/gurl.h"
27 #include "third_party/skia/include/core/SkBitmap.h" 27 #include "third_party/skia/include/core/SkBitmap.h"
28 #include "testing/gtest/include/gtest/gtest_prod.h" 28 #include "testing/gtest/include/gtest/gtest_prod.h"
29 29
30 class BookmarkCodec;
31 class BookmarkEditorView;
32 class BookmarkIndex; 30 class BookmarkIndex;
33 class BookmarkLoadDetails; 31 class BookmarkLoadDetails;
34 class BookmarkModel; 32 class BookmarkModel;
35 class BookmarkStorage; 33 class BookmarkStorage;
36 class Profile; 34 class Profile;
37 35
38 namespace bookmark_utils { 36 namespace bookmark_utils {
39 struct TitleMatch; 37 struct TitleMatch;
40 } 38 }
41 39
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 scoped_refptr<BookmarkStorage> store_; 498 scoped_refptr<BookmarkStorage> store_;
501 499
502 scoped_ptr<BookmarkIndex> index_; 500 scoped_ptr<BookmarkIndex> index_;
503 501
504 base::WaitableEvent loaded_signal_; 502 base::WaitableEvent loaded_signal_;
505 503
506 DISALLOW_COPY_AND_ASSIGN(BookmarkModel); 504 DISALLOW_COPY_AND_ASSIGN(BookmarkModel);
507 }; 505 };
508 506
509 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_ 507 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698