Index: chrome/browser/tabs/tab_strip_model.cc |
diff --git a/chrome/browser/tabs/tab_strip_model.cc b/chrome/browser/tabs/tab_strip_model.cc |
index 14df8d1be6522e85a0de3e6ccdb5017c9ea80d89..f27b5a8fcefd442e574e1dd5409f8179178cb09c 100644 |
--- a/chrome/browser/tabs/tab_strip_model.cc |
+++ b/chrome/browser/tabs/tab_strip_model.cc |
@@ -660,7 +660,8 @@ bool TabStripModel::IsContextMenuCommandEnabled( |
case CommandTogglePinned: |
return !IsAppTab(context_index); |
case CommandBookmarkAllTabs: |
- return delegate_->CanBookmarkAllTabs(); |
+ return browser_defaults::bookmarks_enabled && |
+ delegate_->CanBookmarkAllTabs(); |
case CommandUseVerticalTabs: |
return true; |
default: |