Index: chrome/browser/bookmarks/bookmark_editor.h |
diff --git a/chrome/browser/bookmarks/bookmark_editor.h b/chrome/browser/bookmarks/bookmark_editor.h |
index 4375914c71c41a8dedff6f57c17106fa66b823f1..ffbd278764afbd0ff2f704be790499648f5db0d8 100644 |
--- a/chrome/browser/bookmarks/bookmark_editor.h |
+++ b/chrome/browser/bookmarks/bookmark_editor.h |
@@ -15,6 +15,7 @@ |
class BookmarkNode; |
class GURL; |
class Profile; |
+class Browser; |
// Small, cross platform interface that shows the correct platform specific |
// bookmark editor dialog. |
@@ -93,6 +94,15 @@ class BookmarkEditor { |
const EditDetails& details, |
Configuration configuration); |
+ // Shows the bookmark all tabs dialog. |
+ static void ShowBookmarkAllTabsDialog(Browser* browser); |
+ |
+#if !defined(USE_AURA) |
+ // Shows the native bookmark all tabs dialog. This is delegated from |
+ // ShowBookmarkAllTabsDialog() when use_aura is not set. |
+ static void ShowNativeBookmarkAllTabsDialog(Browser* browser); |
+#endif // !defined(USE_AURA) |
+ |
private: |
// Shows the native bookmark editor. |
// TODO(flackr): Remove parent argument. |