| Index: chrome/browser/resources/settings/search_engines_page/search_engine_entry.js
|
| diff --git a/chrome/browser/resources/settings/search_engines_page/search_engine_entry.js b/chrome/browser/resources/settings/search_engines_page/search_engine_entry.js
|
| index 5a33a8757e30841460ad6fc62290b8e7da8d55bb..1cd5068dad6b4ace9e21d798fbaeed6a3f6b680f 100644
|
| --- a/chrome/browser/resources/settings/search_engines_page/search_engine_entry.js
|
| +++ b/chrome/browser/resources/settings/search_engines_page/search_engine_entry.js
|
| @@ -69,7 +69,7 @@ Polymer({
|
|
|
| /** @private */
|
| closePopupMenu_: function() {
|
| - this.$$('iron-dropdown').close();
|
| + this.$$('dialog[is=settings-action-menu]').close();
|
| },
|
|
|
| /**
|
| @@ -81,4 +81,11 @@ Polymer({
|
| // Force default icon, if no |engine.iconURL| is available.
|
| return cr.icon.getFavicon(url || '');
|
| },
|
| +
|
| + /** @private */
|
| + onDotsTap_: function() {
|
| + /** @type {!SettingsActionMenuElement} */ (
|
| + this.$$('dialog[is=settings-action-menu]')).showAt(
|
| + assert(this.$$('paper-icon-button')));
|
| + },
|
| });
|
|
|