| 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 e8ff92c4d91a36f57584941eddb231ce9effe018..9163f8f5320a34d5d9f77a3f9fe7e093069d33d4 100644
 | 
| --- a/chrome/browser/ui/toolbar/wrench_menu_model.cc
 | 
| +++ b/chrome/browser/ui/toolbar/wrench_menu_model.cc
 | 
| @@ -271,7 +271,7 @@ string16 WrenchMenuModel::GetLabelForCommandId(int command_id) const {
 | 
|        MetroPinTabHelper* tab_helper =
 | 
|            web_contents ? MetroPinTabHelper::FromWebContents(web_contents)
 | 
|                         : NULL;
 | 
| -      if (tab_helper && tab_helper->is_pinned())
 | 
| +      if (tab_helper && tab_helper->IsPinned())
 | 
|          string_id = IDS_UNPIN_FROM_START_SCREEN;
 | 
|        return l10n_util::GetStringUTF16(string_id);
 | 
|      }
 | 
| 
 |