| Index: components/bookmarks/test/test_bookmark_client.cc
|
| diff --git a/components/bookmarks/test/test_bookmark_client.cc b/components/bookmarks/test/test_bookmark_client.cc
|
| index 6151032d9661bc01101eddbb60cf7a5d40791f24..4568f9f30f665a75037d14d2d9f271ed668a2a16 100644
|
| --- a/components/bookmarks/test/test_bookmark_client.cc
|
| +++ b/components/bookmarks/test/test_bookmark_client.cc
|
| @@ -20,8 +20,10 @@ scoped_ptr<BookmarkModel> TestBookmarkClient::CreateModel(bool index_urls) {
|
| bool TestBookmarkClient::IsPermanentNodeVisible(int node_type) {
|
| DCHECK(node_type == BookmarkNode::BOOKMARK_BAR ||
|
| node_type == BookmarkNode::OTHER_NODE ||
|
| - node_type == BookmarkNode::MOBILE);
|
| - return node_type != BookmarkNode::MOBILE;
|
| + node_type == BookmarkNode::MOBILE ||
|
| + node_type == BookmarkNode::MANAGED);
|
| + return node_type != BookmarkNode::MOBILE &&
|
| + node_type != BookmarkNode::MANAGED;
|
| }
|
|
|
| void TestBookmarkClient::RecordAction(const base::UserMetricsAction& action) {
|
|
|