Index: components/bookmarks/browser/bookmark_utils.cc |
diff --git a/components/bookmarks/browser/bookmark_utils.cc b/components/bookmarks/browser/bookmark_utils.cc |
index b6879373982f112c7bedf6b15889347de654ab96..bff1d49a681a474e32ebd9c4db61105058419a8c 100644 |
--- a/components/bookmarks/browser/bookmark_utils.cc |
+++ b/components/bookmarks/browser/bookmark_utils.cc |
@@ -178,7 +178,7 @@ void CopyToClipboard(BookmarkModel* model, |
WriteToClipboard(ui::CLIPBOARD_TYPE_COPY_PASTE); |
if (remove_nodes) { |
- ScopedGroupBookmarkActions group_cut(model); |
+ bookmarks::ScopedGroupBookmarkActions group_cut(model); |
for (size_t i = 0; i < filtered_nodes.size(); ++i) { |
int index = filtered_nodes[i]->parent()->GetIndexOf(filtered_nodes[i]); |
if (index > -1) |
@@ -199,7 +199,7 @@ void PasteFromClipboard(BookmarkModel* model, |
if (index == -1) |
index = parent->child_count(); |
- ScopedGroupBookmarkActions group_paste(model); |
+ bookmarks::ScopedGroupBookmarkActions group_paste(model); |
CloneBookmarkNode(model, bookmark_data.elements, parent, index, true); |
} |