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

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

Issue 8497008: Implement Bookmark All Tabs Dialog with WebUI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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_editor.cc
diff --git a/chrome/browser/bookmarks/bookmark_editor.cc b/chrome/browser/bookmarks/bookmark_editor.cc
index 78013fbed27132c647cae3b1fe55dfe707cfe439..ab1c927df1bd352294fc3d1293fb3b342294ebeb 100644
--- a/chrome/browser/bookmarks/bookmark_editor.cc
+++ b/chrome/browser/bookmarks/bookmark_editor.cc
@@ -5,6 +5,7 @@
#include "chrome/browser/bookmarks/bookmark_editor.h"
#include "chrome/browser/bookmarks/bookmark_model.h"
#include "chrome/browser/ui/webui/chrome_web_ui.h"
+#include "chrome/browser/ui/webui/bookmark_all_tabs_dialog.h"
BookmarkEditor::EditDetails::EditDetails(Type node_type)
: type(node_type), existing_node(NULL), parent_node(NULL) {
@@ -61,3 +62,9 @@ void BookmarkEditor::Show(gfx::NativeWindow parent_window,
configuration);
#endif
}
+
+#if defined(OS_WIN) || defined(TOOLKIT_VIEWS)
+void BookmarkEditor::ShowBookmarkAllTabsDialog(Profile* profile) {
+ BookmarkAllTabsDialog::Show(profile);
+}
+#endif

Powered by Google App Engine
This is Rietveld 408576698