| 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..b458c4658d692b8aa4d440915457c0fb8e72603e 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,10 @@ Polymer({
|
| // Force default icon, if no |engine.iconURL| is available.
|
| return cr.icon.getFavicon(url || '');
|
| },
|
| +
|
| + onDotsTap_: function(e) {
|
| + var rect = this.$$('paper-icon-button').getBoundingClientRect();
|
| + /** @type {!SettingsActionMenuElement} */ (
|
| + this.$$('dialog[is=settings-action-menu]')).showAtLocation(rect);
|
| + },
|
| });
|
|
|