OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_BOOKMARKS_TEST_TEST_BOOKMARK_CLIENT_H_ | 5 #ifndef COMPONENTS_BOOKMARKS_TEST_TEST_BOOKMARK_CLIENT_H_ |
6 #define COMPONENTS_BOOKMARKS_TEST_TEST_BOOKMARK_CLIENT_H_ | 6 #define COMPONENTS_BOOKMARKS_TEST_TEST_BOOKMARK_CLIENT_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "components/bookmarks/browser/bookmark_client.h" | 9 #include "components/bookmarks/browser/bookmark_client.h" |
10 | 10 |
11 class BookmarkModel; | 11 class BookmarkModel; |
12 | 12 |
13 namespace bookmarks { | 13 namespace bookmarks { |
14 | 14 |
15 class TestBookmarkClient : public BookmarkClient { | 15 class TestBookmarkClient : public BookmarkClient { |
16 public: | 16 public: |
17 TestBookmarkClient(); | 17 TestBookmarkClient(); |
18 virtual ~TestBookmarkClient(); | 18 ~TestBookmarkClient() override; |
19 | 19 |
20 // Create a BookmarkModel using this object as its client. The returned | 20 // Create a BookmarkModel using this object as its client. The returned |
21 // BookmarkModel* is owned by the caller. | 21 // BookmarkModel* is owned by the caller. |
22 scoped_ptr<BookmarkModel> CreateModel(); | 22 scoped_ptr<BookmarkModel> CreateModel(); |
23 | 23 |
24 // Sets the list of extra nodes to be returned by the next call to | 24 // Sets the list of extra nodes to be returned by the next call to |
25 // CreateModel() or GetLoadExtraNodesCallback(). | 25 // CreateModel() or GetLoadExtraNodesCallback(). |
26 void SetExtraNodesToLoad(BookmarkPermanentNodeList extra_nodes); | 26 void SetExtraNodesToLoad(BookmarkPermanentNodeList extra_nodes); |
27 | 27 |
28 // Returns the current extra_nodes, set via SetExtraNodesToLoad(). | 28 // Returns the current extra_nodes, set via SetExtraNodesToLoad(). |
29 const std::vector<BookmarkPermanentNode*>& extra_nodes() { | 29 const std::vector<BookmarkPermanentNode*>& extra_nodes() { |
30 return extra_nodes_; | 30 return extra_nodes_; |
31 } | 31 } |
32 | 32 |
33 // Returns true if |node| is one of the |extra_nodes_|. | 33 // Returns true if |node| is one of the |extra_nodes_|. |
34 bool IsExtraNodeRoot(const BookmarkNode* node); | 34 bool IsExtraNodeRoot(const BookmarkNode* node); |
35 | 35 |
36 // Returns true if |node| belongs to the tree of one of the |extra_nodes_|. | 36 // Returns true if |node| belongs to the tree of one of the |extra_nodes_|. |
37 bool IsAnExtraNode(const BookmarkNode* node); | 37 bool IsAnExtraNode(const BookmarkNode* node); |
38 | 38 |
39 private: | 39 private: |
40 // BookmarkClient: | 40 // BookmarkClient: |
41 virtual bool IsPermanentNodeVisible( | 41 bool IsPermanentNodeVisible(const BookmarkPermanentNode* node) override; |
42 const BookmarkPermanentNode* node) override; | 42 void RecordAction(const base::UserMetricsAction& action) override; |
43 virtual void RecordAction(const base::UserMetricsAction& action) override; | 43 LoadExtraCallback GetLoadExtraNodesCallback() override; |
44 virtual LoadExtraCallback GetLoadExtraNodesCallback() override; | 44 bool CanSetPermanentNodeTitle(const BookmarkNode* permanent_node) override; |
45 virtual bool CanSetPermanentNodeTitle( | 45 bool CanSyncNode(const BookmarkNode* node) override; |
46 const BookmarkNode* permanent_node) override; | 46 bool CanBeEditedByUser(const BookmarkNode* node) override; |
47 virtual bool CanSyncNode(const BookmarkNode* node) override; | |
48 virtual bool CanBeEditedByUser(const BookmarkNode* node) override; | |
49 | 47 |
50 // Helpers for GetLoadExtraNodesCallback(). | 48 // Helpers for GetLoadExtraNodesCallback(). |
51 static BookmarkPermanentNodeList LoadExtraNodes( | 49 static BookmarkPermanentNodeList LoadExtraNodes( |
52 BookmarkPermanentNodeList extra_nodes, | 50 BookmarkPermanentNodeList extra_nodes, |
53 int64* next_id); | 51 int64* next_id); |
54 | 52 |
55 BookmarkPermanentNodeList extra_nodes_to_load_; | 53 BookmarkPermanentNodeList extra_nodes_to_load_; |
56 std::vector<BookmarkPermanentNode*> extra_nodes_; | 54 std::vector<BookmarkPermanentNode*> extra_nodes_; |
57 | 55 |
58 DISALLOW_COPY_AND_ASSIGN(TestBookmarkClient); | 56 DISALLOW_COPY_AND_ASSIGN(TestBookmarkClient); |
59 }; | 57 }; |
60 | 58 |
61 } // namespace bookmarks | 59 } // namespace bookmarks |
62 | 60 |
63 #endif // COMPONENTS_BOOKMARKS_TEST_TEST_BOOKMARK_CLIENT_H_ | 61 #endif // COMPONENTS_BOOKMARKS_TEST_TEST_BOOKMARK_CLIENT_H_ |
OLD | NEW |