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

Side by Side Diff: ios/chrome/browser/bookmarks/bookmark_client_impl.h

Issue 2544293002: ios: Cleanup class/struct forward declarations (Closed)
Patch Set: Created 4 years 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 IOS_CHROME_BROWSER_BOOKMARKS_BOOKMARK_CLIENT_IMPL_H_ 5 #ifndef IOS_CHROME_BROWSER_BOOKMARKS_BOOKMARK_CLIENT_IMPL_H_
6 #define IOS_CHROME_BROWSER_BOOKMARKS_BOOKMARK_CLIENT_IMPL_H_ 6 #define IOS_CHROME_BROWSER_BOOKMARKS_BOOKMARK_CLIENT_IMPL_H_
7 7
8 #include <set> 8 #include <set>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/deferred_sequenced_task_runner.h" 11 #include "base/deferred_sequenced_task_runner.h"
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "components/bookmarks/browser/bookmark_client.h" 13 #include "components/bookmarks/browser/bookmark_client.h"
14 14
15 class GURL; 15 class GURL;
16 16
17 namespace base {
18 class ListValue;
19 }
20
21 namespace bookmarks { 17 namespace bookmarks {
22 class BookmarkModel;
23 class BookmarkNode; 18 class BookmarkNode;
24 class BookmarkPermanentNode; 19 class BookmarkPermanentNode;
25 } 20 }
26 21
27 namespace ios { 22 namespace ios {
28 class ChromeBrowserState; 23 class ChromeBrowserState;
29 } 24 }
30 25
31 class BookmarkClientImpl : public bookmarks::BookmarkClient { 26 class BookmarkClientImpl : public bookmarks::BookmarkClient {
32 public: 27 public:
(...skipping 22 matching lines...) Expand all
55 50
56 private: 51 private:
57 // Pointer to the associated ios::ChromeBrowserState. Must outlive 52 // Pointer to the associated ios::ChromeBrowserState. Must outlive
58 // BookmarkClientImpl. 53 // BookmarkClientImpl.
59 ios::ChromeBrowserState* browser_state_; 54 ios::ChromeBrowserState* browser_state_;
60 55
61 DISALLOW_COPY_AND_ASSIGN(BookmarkClientImpl); 56 DISALLOW_COPY_AND_ASSIGN(BookmarkClientImpl);
62 }; 57 };
63 58
64 #endif // IOS_CHROME_BROWSER_BOOKMARKS_BOOKMARK_CLIENT_IMPL_H_ 59 #endif // IOS_CHROME_BROWSER_BOOKMARKS_BOOKMARK_CLIENT_IMPL_H_
OLDNEW
« no previous file with comments | « ios/chrome/browser/application_context_impl.h ('k') | ios/chrome/browser/browser_state/chrome_browser_state_io_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698