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

Side by Side Diff: components/bookmarks/test/test_bookmark_client.cc

Issue 302313005: Show the Managed Bookmarks folder in the views UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased on model changes Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
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 #include "components/bookmarks/test/test_bookmark_client.h" 5 #include "components/bookmarks/test/test_bookmark_client.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "components/bookmarks/browser/bookmark_model.h" 10 #include "components/bookmarks/browser/bookmark_model.h"
11 #include "components/bookmarks/browser/bookmark_node.h" 11 #include "components/bookmarks/browser/bookmark_node.h"
12 #include "components/bookmarks/browser/bookmark_storage.h" 12 #include "components/bookmarks/browser/bookmark_storage.h"
13 13
14 namespace test { 14 namespace test {
15 15
16 TestBookmarkClient::TestBookmarkClient() {} 16 TestBookmarkClient::TestBookmarkClient() {}
17 17
18 TestBookmarkClient::~TestBookmarkClient() {} 18 TestBookmarkClient::~TestBookmarkClient() {}
19 19
20 scoped_ptr<BookmarkModel> TestBookmarkClient::CreateModel(bool index_urls) { 20 scoped_ptr<BookmarkModel> TestBookmarkClient::CreateModel(bool index_urls) {
21 scoped_ptr<BookmarkModel> bookmark_model(new BookmarkModel(this, index_urls)); 21 scoped_ptr<BookmarkModel> bookmark_model(new BookmarkModel(this, index_urls));
22 bookmark_model->DoneLoading(bookmark_model->CreateLoadDetails(std::string())); 22 scoped_ptr<bookmarks::BookmarkLoadDetails> details =
23 bookmark_model->CreateLoadDetails(std::string());
24 details->LoadExtraNodes();
25 bookmark_model->DoneLoading(details.Pass());
23 return bookmark_model.Pass(); 26 return bookmark_model.Pass();
24 } 27 }
25 28
26 void TestBookmarkClient::SetExtraNodesToLoad( 29 void TestBookmarkClient::SetExtraNodesToLoad(
27 bookmarks::BookmarkPermanentNodeList extra_nodes) { 30 bookmarks::BookmarkPermanentNodeList extra_nodes) {
28 extra_nodes_to_load_ = extra_nodes.Pass(); 31 extra_nodes_to_load_ = extra_nodes.Pass();
29 // Keep a copy in |extra_nodes_| for the acessor. 32 // Keep a copy in |extra_nodes_| for the acessor.
30 extra_nodes_ = extra_nodes_to_load_.get(); 33 extra_nodes_ = extra_nodes_to_load_.get();
31 } 34 }
32 35
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 } 79 }
77 80
78 bool TestBookmarkClient::CanSyncNode(const BookmarkNode* node) { 81 bool TestBookmarkClient::CanSyncNode(const BookmarkNode* node) {
79 return !IsAnExtraNode(node); 82 return !IsAnExtraNode(node);
80 } 83 }
81 84
82 bool TestBookmarkClient::CanReorderChildren(const BookmarkNode* parent) { 85 bool TestBookmarkClient::CanReorderChildren(const BookmarkNode* parent) {
83 return !IsAnExtraNode(parent); 86 return !IsAnExtraNode(parent);
84 } 87 }
85 88
89 bool TestBookmarkClient::CanBeEditedByUser(const BookmarkNode* node) {
90 return !IsAnExtraNode(node);
91 }
92
86 // static 93 // static
87 bookmarks::BookmarkPermanentNodeList TestBookmarkClient::LoadExtraNodes( 94 bookmarks::BookmarkPermanentNodeList TestBookmarkClient::LoadExtraNodes(
88 bookmarks::BookmarkPermanentNodeList extra_nodes, 95 bookmarks::BookmarkPermanentNodeList extra_nodes,
89 int64* next_id) { 96 int64* next_id) {
90 return extra_nodes.Pass(); 97 return extra_nodes.Pass();
91 } 98 }
92 99
93 } // namespace test 100 } // namespace test
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698