HomeSort by relevance Sort by last modified time
    Searched refs:drop_parent (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_drag_drop_views.h 40 // Returns true if the bookmark data can be dropped on |drop_parent| at
43 // |data| are an ancestor of |drop_parent| and one of the nodes isn't already
44 // a child of |drop_parent| at |index|.
47 const BookmarkNode* drop_parent,
bookmark_drag_drop_views.cc 124 const BookmarkNode* drop_parent,
126 if (!drop_parent->is_folder()) {
135 if (!model->client()->CanBeEditedByUser(drop_parent))
145 int node_index = (drop_parent == node->parent()) ?
146 drop_parent->GetIndexOf(nodes[i]) : -1;
150 // drop_parent can't accept a child that is an ancestor.
151 if (drop_parent->HasAncestor(node))
bookmark_menu_delegate.cc 223 const BookmarkNode* drop_parent = node->parent(); local
224 int index_to_drop_at = drop_parent->GetIndexOf(node);
243 drop_parent = node;
250 DCHECK(drop_parent);
252 profile_, event, drop_data_, drop_parent, index_to_drop_at);
263 const BookmarkNode* drop_parent = drop_node->parent(); local
264 DCHECK(drop_parent);
265 int index_to_drop_at = drop_parent->GetIndexOf(drop_node);
273 drop_parent = drop_node;
281 drop_parent = model->bookmark_bar_node()
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/bookmark_manager_private/
bookmark_manager_private_api.cc 569 const BookmarkNode* drop_parent = GetNodeFromString(model, params->parent_id); local
570 if (!CanBeModified(drop_parent))
577 drop_index = drop_parent->child_count();
599 GetProfile(), *drag_data, drop_parent, drop_index, copy); local

Completed in 55 milliseconds