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

  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_editor_view.h 54 typedef ui::TreeNodeWithValue<int64> EditorNode;
58 class EditorTreeModel : public ui::TreeNodeModel<EditorNode> {
60 explicit EditorTreeModel(EditorNode* root)
61 : ui::TreeNodeModel<EditorNode>(root) {}
170 EditorNode* CreateRootNode();
174 void CreateNodes(const BookmarkNode* bb_node, EditorNode* b_node);
177 EditorNode* FindNodeWithID(BookmarkEditorView::EditorNode* node, int64 id);
184 void ApplyEdits(EditorNode* parent);
193 // used to determine the new BookmarkNode parent based on the EditorNode
    [all...]
bookmark_editor_view.cc 180 EditorNode* bb_node = tree_model_->AsNode(node);
418 EditorNode* root_node = CreateRootNode();
449 EditorNode* parent = tree_model_->AsNode(tree_view_->GetSelectedNode());
458 BookmarkEditorView::EditorNode* BookmarkEditorView::AddNewFolder(
459 EditorNode* parent) {
460 EditorNode* new_node = new EditorNode();
476 EditorNode* b_node =
484 BookmarkEditorView::EditorNode* BookmarkEditorView::CreateRootNode() {
485 EditorNode* root_node = new EditorNode(std::wstring(), 0)
    [all...]
bookmark_editor_view_unittest.cc 74 void ApplyEdits(BookmarkEditorView::EditorNode* node) {
78 BookmarkEditorView::EditorNode* AddNewFolder(
79 BookmarkEditorView::EditorNode* parent) {
134 BookmarkEditorView::EditorNode* editor_root = editor_tree_model()->GetRoot();
139 BookmarkEditorView::EditorNode* bb_node = editor_root->GetChild(0);
149 BookmarkEditorView::EditorNode* other_node = editor_root->GetChild(1);
224 BookmarkEditorView::EditorNode* f2 =
226 BookmarkEditorView::EditorNode* f21 = AddNewFolder(f2);
228 BookmarkEditorView::EditorNode* f211 = AddNewFolder(f21);

Completed in 547 milliseconds