diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-20 17:59:18 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-20 17:59:18 +0000 |
commit | 28b180310c12025dffd454c3a5b1a2c409ac9509 (patch) | |
tree | 5294e512c67a03ec89c32098114e6ba880b84446 /chrome/browser/tab_menu_model.h | |
parent | 224c0ad4d0d66825b957812a06c0e65d8d811ea7 (diff) | |
download | chromium_src-28b180310c12025dffd454c3a5b1a2c409ac9509.zip chromium_src-28b180310c12025dffd454c3a5b1a2c409ac9509.tar.gz chromium_src-28b180310c12025dffd454c3a5b1a2c409ac9509.tar.bz2 |
Makes the toolbar visible for apps again. Here's the set of patches I
reverted: 49016, 47119, 47177, 46930, 46775, and the UI changes for
45566. If you see anything missing, please let me know.
Also, there are some grd strings no longer necessary. I'll nuke those
separately.
BUG=49013
TEST=none
Review URL: http://codereview.chromium.org/2888020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53062 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_menu_model.h')
-rw-r--r-- | chrome/browser/tab_menu_model.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/browser/tab_menu_model.h b/chrome/browser/tab_menu_model.h index d0c29eb..a910983 100644 --- a/chrome/browser/tab_menu_model.h +++ b/chrome/browser/tab_menu_model.h @@ -15,16 +15,14 @@ class Browser; // of the tab a new TabMenuModel should be created each time the menu is shown. class TabMenuModel : public menus::SimpleMenuModel { public: - TabMenuModel(menus::SimpleMenuModel::Delegate* delegate, bool is_pinned, - bool allow_toolbar_toggle, bool is_toolbar_visible); + TabMenuModel(menus::SimpleMenuModel::Delegate* delegate, bool is_pinned); virtual ~TabMenuModel() {} // Returns true if vertical tabs are enabled. static bool AreVerticalTabsEnabled(); private: - void Build(bool is_pinned, bool allow_toolbar_toggle, - bool is_toolbar_visible); + void Build(bool is_pinned); DISALLOW_COPY_AND_ASSIGN(TabMenuModel); }; |