Index: app/menus/menu_model.cc |
diff --git a/app/menus/menu_model.cc b/app/menus/menu_model.cc |
index cd554f2928a89e0dca2b4f1638e9e94f1249733e..3df2bcc9fd02ddcdc0b05f06b304ead8cc9c4d31 100644 |
--- a/app/menus/menu_model.cc |
+++ b/app/menus/menu_model.cc |
@@ -6,6 +6,10 @@ |
namespace menus { |
+int MenuModel::GetFirstItemIndex(gfx::NativeMenu native_menu) const { |
+ return 0; |
+} |
+ |
bool MenuModel::IsVisibleAt(int index) const { |
return true; |
} |
@@ -29,6 +33,10 @@ bool MenuModel::GetModelAndIndexForCommandId(int command_id, |
return false; |
} |
+const gfx::Font* MenuModel::GetLabelFontAt(int index) const { |
+ return NULL; |
+} |
+ |
// Default implementation ignores the disposition. |
void MenuModel::ActivatedAtWithDisposition(int index, int disposition) { |
ActivatedAt(index); |