| Index: chrome/browser/ui/views/bookmarks/bookmark_context_menu_controller_views.cc
|
| diff --git a/chrome/browser/ui/views/bookmarks/bookmark_context_menu_controller_views.cc b/chrome/browser/ui/views/bookmarks/bookmark_context_menu_controller_views.cc
|
| index e133bd85b0e9c49cfa1a65fa138769596c5b6764..2bfcdc8b58048adb82178d7eff86ca55913728a3 100644
|
| --- a/chrome/browser/ui/views/bookmarks/bookmark_context_menu_controller_views.cc
|
| +++ b/chrome/browser/ui/views/bookmarks/bookmark_context_menu_controller_views.cc
|
| @@ -130,9 +130,15 @@ void BookmarkContextMenuControllerViews::ExecuteCommand(int id) {
|
| }
|
|
|
| if (selection_[0]->is_url()) {
|
| +#if defined(WEBUI_DIALOGS)
|
| + Browser* browser = BrowserList::GetLastActiveWithProfile(profile_);
|
| + DCHECK(browser);
|
| + browser->OpenBookmarkManagerEditNode(selection_[0]->id());
|
| +#else
|
| BookmarkEditor::Show(parent_widget_->GetNativeWindow(), profile_,
|
| parent_, BookmarkEditor::EditDetails(selection_[0]),
|
| BookmarkEditor::SHOW_TREE);
|
| +#endif
|
| } else {
|
| BookmarkFolderEditorController::Show(profile_,
|
| parent_widget_->GetNativeWindow(), selection_[0], -1,
|
| @@ -158,11 +164,17 @@ void BookmarkContextMenuControllerViews::ExecuteCommand(int id) {
|
| UserMetrics::RecordAction(
|
| UserMetricsAction("BookmarkBar_ContextMenu_Add"));
|
|
|
| +#if defined(WEBUI_DIALOGS)
|
| + Browser* browser = BrowserList::GetLastActiveWithProfile(profile_);
|
| + DCHECK(browser);
|
| + browser->OpenBookmarkManagerAddNodeIn(selection_[0]->id());
|
| +#else
|
| // TODO: this should honor the index from GetParentForNewNodes.
|
| BookmarkEditor::Show(
|
| parent_widget_->GetNativeWindow(), profile_,
|
| bookmark_utils::GetParentForNewNodes(parent_, selection_, NULL),
|
| BookmarkEditor::EditDetails(), BookmarkEditor::SHOW_TREE);
|
| +#endif
|
| break;
|
| }
|
|
|
|
|