| Index: chrome/browser/chromeos/status/input_method_menu.cc
|
| diff --git a/chrome/browser/chromeos/status/input_method_menu.cc b/chrome/browser/chromeos/status/input_method_menu.cc
|
| index e004cf62e659910f972104ba2c1ec5f3e0f6bf53..305871abc835515ab924b10d7484d9491129cd3c 100644
|
| --- a/chrome/browser/chromeos/status/input_method_menu.cc
|
| +++ b/chrome/browser/chromeos/status/input_method_menu.cc
|
| @@ -221,7 +221,7 @@ bool InputMethodMenu::HasIcons() const {
|
| return false;
|
| }
|
|
|
| -bool InputMethodMenu::GetIconAt(int index, SkBitmap* icon) const {
|
| +bool InputMethodMenu::GetIconAt(int index, SkBitmap* icon) {
|
| return false;
|
| }
|
|
|
| @@ -249,6 +249,10 @@ void InputMethodMenu::MenuWillShow() {
|
| // Views for Chromium OS does not support this interface yet.
|
| }
|
|
|
| +void InputMethodMenu::SetMenuModelDelegate(ui::MenuModelDelegate* delegate) {
|
| + // Not needed for current usage.
|
| +}
|
| +
|
| int InputMethodMenu::GetItemCount() const {
|
| if (!model_.get()) {
|
| // Model is not constructed yet. This means that
|
|
|