| Index: chrome/browser/ui/toolbar/wrench_menu_model.cc
|
| diff --git a/chrome/browser/ui/toolbar/wrench_menu_model.cc b/chrome/browser/ui/toolbar/wrench_menu_model.cc
|
| index e320ba3e00772fc3aa4fc2dd85238e7cd5fca5db..08b24858c8d64791775d5d46d46c8d4037dde6ff 100644
|
| --- a/chrome/browser/ui/toolbar/wrench_menu_model.cc
|
| +++ b/chrome/browser/ui/toolbar/wrench_menu_model.cc
|
| @@ -421,7 +421,8 @@ void WrenchMenuModel::ExecuteCommand(int command_id, int event_flags) {
|
|
|
| bool WrenchMenuModel::IsCommandIdChecked(int command_id) const {
|
| if (command_id == IDC_SHOW_BOOKMARK_BAR) {
|
| - return browser_->profile()->GetPrefs()->GetBoolean(prefs::kShowBookmarkBar);
|
| + return browser_->profile()->GetPrefs()->GetBoolean(
|
| + bookmarks::prefs::kShowBookmarkBar);
|
| } else if (command_id == IDC_PROFILING_ENABLED) {
|
| return Profiling::BeingProfiled();
|
| } else if (command_id == IDC_TOGGLE_REQUEST_TABLET_SITE) {
|
|
|