Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / autofill / autofill_dialog_models.cc
index fa8de9e..66239e3 100644 (file)
@@ -100,10 +100,6 @@ void SuggestionsMenuModel::SetEnabled(const std::string& item_key,
   items_[GetItemIndex(item_key)].enabled = enabled;
 }
 
-void SuggestionsMenuModel::MenuWillShow() {
-  ui::SimpleMenuModel::MenuWillShow();
-}
-
 bool SuggestionsMenuModel::IsCommandIdChecked(
     int command_id) const {
   return checked_item_ == command_id;
@@ -127,10 +123,6 @@ void SuggestionsMenuModel::ExecuteCommand(int command_id, int event_flags) {
   delegate_->SuggestionItemSelected(this, command_id);
 }
 
-void SuggestionsMenuModel::MenuWillShow(ui::SimpleMenuModel* source) {
-  delegate_->SuggestionsMenuWillShow();
-}
-
 size_t SuggestionsMenuModel::GetItemIndex(const std::string& item_key) {
   for (size_t i = 0; i < items_.size(); ++i) {
     if (items_[i].key == item_key)