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

Unified Diff: chrome/browser/tab_menu_model.cc

Issue 2952004: [Mac] Finish implementation of App Tabs. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 months 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/tab_menu_model.cc
===================================================================
--- chrome/browser/tab_menu_model.cc (revision 52312)
+++ chrome/browser/tab_menu_model.cc (working copy)
@@ -10,11 +10,11 @@
#include "grit/generated_resources.h"
TabMenuModel::TabMenuModel(menus::SimpleMenuModel::Delegate* delegate,
+ bool is_pinned,
bool allow_toolbar_toggle,
- bool is_app_tab,
bool is_toolbar_visible)
: menus::SimpleMenuModel(delegate) {
- Build(allow_toolbar_toggle, is_app_tab, is_toolbar_visible);
+ Build(is_pinned, allow_toolbar_toggle, is_toolbar_visible);
}
// static

Powered by Google App Engine
This is Rietveld 408576698