| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |