diff options
author | yoshiki@chromium.org <yoshiki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-18 05:45:28 +0000 |
---|---|---|
committer | yoshiki@chromium.org <yoshiki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-18 05:45:28 +0000 |
commit | 9d603396af7be1ccaab7f2843ff8c1dcca430538 (patch) | |
tree | 8d71fb8e71590635c9d44cf51bdacc2ff0d564fb /chrome/browser/bookmarks/bookmark_editor.h | |
parent | 158c644ad581ff89ea0c84577b4b317dfea2cfbf (diff) | |
download | chromium_src-9d603396af7be1ccaab7f2843ff8c1dcca430538.zip chromium_src-9d603396af7be1ccaab7f2843ff8c1dcca430538.tar.gz chromium_src-9d603396af7be1ccaab7f2843ff8c1dcca430538.tar.bz2 |
Implement Bookmark All Tabs Dialog with WebUI.
Currently, this does not work with use_aura=1.
BUG=97839
TEST=manual on Win and Linux with toolkit_views=1
Review URL: http://codereview.chromium.org/8497008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110659 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/bookmarks/bookmark_editor.h')
-rw-r--r-- | chrome/browser/bookmarks/bookmark_editor.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/browser/bookmarks/bookmark_editor.h b/chrome/browser/bookmarks/bookmark_editor.h index 4375914..ffbd278 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. |