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

Unified Diff: chrome/browser/bookmarks/bookmark_context_menu_controller.cc

Issue 271115: Makes canceling 'bookmark all tabs' delete the folder. Or rather,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/bookmarks/bookmark_context_menu_controller.cc
===================================================================
--- chrome/browser/bookmarks/bookmark_context_menu_controller.cc (revision 29276)
+++ chrome/browser/bookmarks/bookmark_context_menu_controller.cc (working copy)
@@ -316,7 +316,8 @@
editor_config = BookmarkEditor::SHOW_TREE;
else
editor_config = BookmarkEditor::NO_TREE;
- BookmarkEditor::Show(parent_window_, profile_, parent_, selection_[0],
+ BookmarkEditor::Show(parent_window_, profile_, parent_,
+ BookmarkEditor::EditDetails(selection_[0]),
editor_config, NULL);
} else {
EditFolderController::Show(profile_, parent_window_, selection_[0],
@@ -349,7 +350,8 @@
handler = new SelectOnCreationHandler(profile_);
}
BookmarkEditor::Show(parent_window_, profile_, GetParentForNewNodes(),
- NULL, editor_config, handler);
+ BookmarkEditor::EditDetails(), editor_config,
+ handler);
break;
}
« no previous file with comments | « no previous file | chrome/browser/bookmarks/bookmark_editor.h » ('j') | chrome/browser/gtk/bookmark_editor_gtk.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698