Commit 4dfd13b2 authored by lpromero's avatar lpromero Committed by Commit bot

★ Change the order of the permanent nodes.

BUG=456102

Review URL: https://codereview.chromium.org/912503002

Cr-Commit-Position: refs/heads/master@{#315306}
parent e131f31b
......@@ -45,9 +45,9 @@ void SortBookmarksByName(std::vector<const BookmarkNode*>& nodes) {
std::vector<const BookmarkNode*> PrimaryPermanentNodes(BookmarkModel* model) {
DCHECK(model->loaded());
std::vector<const BookmarkNode*> nodes;
nodes.push_back(model->other_node());
nodes.push_back(model->mobile_node());
nodes.push_back(model->bookmark_bar_node());
nodes.push_back(model->other_node());
return nodes;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment