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

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

Issue 8497008: Implement Bookmark All Tabs Dialog with WebUI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fix 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/bookmarks/bookmark_editor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/bookmarks/bookmark_editor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698