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

Side by Side Diff: chrome/browser/ui/bookmarks/bookmark_drag_drop.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "chrome/browser/ui/bookmarks/bookmark_drag_drop.h" 5 #include "chrome/browser/ui/bookmarks/bookmark_drag_drop.h"
6 6
7 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 7 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
8 #include "chrome/browser/profiles/profile.h" 8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/undo/bookmark_undo_service.h" 9 #include "chrome/browser/undo/bookmark_undo_service.h"
10 #include "chrome/browser/undo/bookmark_undo_service_factory.h" 10 #include "chrome/browser/undo/bookmark_undo_service_factory.h"
11 #include "components/bookmarks/browser/bookmark_client.h"
11 #include "components/bookmarks/browser/bookmark_model.h" 12 #include "components/bookmarks/browser/bookmark_model.h"
12 #include "components/bookmarks/browser/bookmark_node_data.h" 13 #include "components/bookmarks/browser/bookmark_node_data.h"
13 #include "components/bookmarks/browser/bookmark_utils.h" 14 #include "components/bookmarks/browser/bookmark_utils.h"
14 #include "components/bookmarks/browser/scoped_group_bookmark_actions.h" 15 #include "components/bookmarks/browser/scoped_group_bookmark_actions.h"
15 #include "ui/base/dragdrop/drag_drop_types.h" 16 #include "ui/base/dragdrop/drag_drop_types.h"
16 17
17 namespace chrome { 18 namespace chrome {
18 19
19 int DropBookmarks(Profile* profile, 20 int DropBookmarks(Profile* profile,
20 const BookmarkNodeData& data, 21 const BookmarkNodeData& data,
21 const BookmarkNode* parent_node, 22 const BookmarkNode* parent_node,
22 int index) { 23 int index,
24 bool copy) {
23 BookmarkModel* model = BookmarkModelFactory::GetForProfile(profile); 25 BookmarkModel* model = BookmarkModelFactory::GetForProfile(profile);
24 #if !defined(OS_ANDROID) 26 #if !defined(OS_ANDROID)
25 bookmarks::ScopedGroupBookmarkActions group_drops(model); 27 bookmarks::ScopedGroupBookmarkActions group_drops(model);
26 #endif 28 #endif
27 if (data.IsFromProfilePath(profile->GetPath())) { 29 if (data.IsFromProfilePath(profile->GetPath())) {
28 const std::vector<const BookmarkNode*> dragged_nodes = 30 const std::vector<const BookmarkNode*> dragged_nodes =
29 data.GetNodes(model, profile->GetPath()); 31 data.GetNodes(model, profile->GetPath());
32 DCHECK(model->client()->CanBeEditedByUser(parent_node));
33 DCHECK(copy || model->client()->AllCanBeEditedByUser(dragged_nodes));
30 if (!dragged_nodes.empty()) { 34 if (!dragged_nodes.empty()) {
31 // Drag from same profile. Move nodes. 35 // Drag from same profile. Copy or move nodes.
32 for (size_t i = 0; i < dragged_nodes.size(); ++i) { 36 for (size_t i = 0; i < dragged_nodes.size(); ++i) {
33 model->Move(dragged_nodes[i], parent_node, index); 37 if (copy) {
38 model->Copy(dragged_nodes[i], parent_node, index);
39 } else {
40 model->Move(dragged_nodes[i], parent_node, index);
41 }
34 index = parent_node->GetIndexOf(dragged_nodes[i]) + 1; 42 index = parent_node->GetIndexOf(dragged_nodes[i]) + 1;
35 } 43 }
36 return ui::DragDropTypes::DRAG_MOVE; 44 return copy ? ui::DragDropTypes::DRAG_COPY : ui::DragDropTypes::DRAG_MOVE;
37 } 45 }
38 return ui::DragDropTypes::DRAG_NONE; 46 return ui::DragDropTypes::DRAG_NONE;
39 } 47 }
40 // Dropping a folder from different profile. Always accept. 48 // Dropping a folder from different profile. Always accept.
41 bookmark_utils::CloneBookmarkNode(model, data.elements, parent_node, 49 bookmark_utils::CloneBookmarkNode(model, data.elements, parent_node,
42 index, true); 50 index, true);
43 return ui::DragDropTypes::DRAG_COPY; 51 return ui::DragDropTypes::DRAG_COPY;
44 } 52 }
45 53
46 } // namespace chrome 54 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698