| OLD | NEW |
| 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.h" | 7 #include "chrome/browser/bookmarks/bookmark_model.h" |
| 8 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 8 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
| 9 #include "chrome/browser/bookmarks/bookmark_node_data.h" | 9 #include "chrome/browser/bookmarks/bookmark_node_data.h" |
| 10 #include "chrome/browser/bookmarks/bookmark_utils.h" | 10 #include "chrome/browser/bookmarks/bookmark_utils.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 // Drag from same profile. Move nodes. | 24 // Drag from same profile. Move nodes. |
| 25 for (size_t i = 0; i < dragged_nodes.size(); ++i) { | 25 for (size_t i = 0; i < dragged_nodes.size(); ++i) { |
| 26 model->Move(dragged_nodes[i], parent_node, index); | 26 model->Move(dragged_nodes[i], parent_node, index); |
| 27 index = parent_node->GetIndexOf(dragged_nodes[i]) + 1; | 27 index = parent_node->GetIndexOf(dragged_nodes[i]) + 1; |
| 28 } | 28 } |
| 29 return ui::DragDropTypes::DRAG_MOVE; | 29 return ui::DragDropTypes::DRAG_MOVE; |
| 30 } | 30 } |
| 31 return ui::DragDropTypes::DRAG_NONE; | 31 return ui::DragDropTypes::DRAG_NONE; |
| 32 } | 32 } |
| 33 // Dropping a folder from different profile. Always accept. | 33 // Dropping a folder from different profile. Always accept. |
| 34 bookmark_utils::CloneBookmarkNode(model, data.elements, parent_node, index); | 34 bookmark_utils::CloneBookmarkNode(model, data.elements, parent_node, |
| 35 index, true); |
| 35 return ui::DragDropTypes::DRAG_COPY; | 36 return ui::DragDropTypes::DRAG_COPY; |
| 36 } | 37 } |
| 37 | 38 |
| 38 } // namespace chrome | 39 } // namespace chrome |
| OLD | NEW |