Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Side by Side Diff: chrome/browser/resources/settings/search_engines_page/search_engine_entry.js

Issue 2984843003: MD Settings: Convert all usages of .bind(this) to use ES6 arrow function. (Closed)
Patch Set: Resolve conflicts. Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview 'settings-search-engine-entry' is a component for showing a 6 * @fileoverview 'settings-search-engine-entry' is a component for showing a
7 * search engine with its name, domain and query URL. 7 * search engine with its name, domain and query URL.
8 */ 8 */
9 Polymer({ 9 Polymer({
10 is: 'settings-search-engine-entry', 10 is: 'settings-search-engine-entry',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 91
92 /** 92 /**
93 * @param {!Event} e 93 * @param {!Event} e
94 * @private 94 * @private
95 */ 95 */
96 onEditTap_: function(e) { 96 onEditTap_: function(e) {
97 e.preventDefault(); 97 e.preventDefault();
98 this.closePopupMenu_(); 98 this.closePopupMenu_();
99 99
100 this.showEditSearchEngineDialog_ = true; 100 this.showEditSearchEngineDialog_ = true;
101 this.async(function() { 101 this.async(() => {
102 var dialog = this.$$('settings-search-engine-dialog'); 102 var dialog = this.$$('settings-search-engine-dialog');
103 // Register listener to detect when the dialog is closed. Flip the boolean 103 // Register listener to detect when the dialog is closed. Flip the boolean
104 // once closed to force a restamp next time it is shown such that the 104 // once closed to force a restamp next time it is shown such that the
105 // previous dialog's contents are cleared. 105 // previous dialog's contents are cleared.
106 dialog.addEventListener('close', function() { 106 dialog.addEventListener('close', () => {
107 this.showEditSearchEngineDialog_ = false; 107 this.showEditSearchEngineDialog_ = false;
108 cr.ui.focusWithoutInk( 108 cr.ui.focusWithoutInk(
109 assert(this.$$('button[is="paper-icon-button-light"]'))); 109 assert(this.$$('button[is="paper-icon-button-light"]')));
110 }.bind(this)); 110 });
111 }.bind(this)); 111 });
112 }, 112 },
113 113
114 /** @private */ 114 /** @private */
115 onMakeDefaultTap_: function() { 115 onMakeDefaultTap_: function() {
116 this.closePopupMenu_(); 116 this.closePopupMenu_();
117 this.browserProxy_.setDefaultSearchEngine(this.engine.modelIndex); 117 this.browserProxy_.setDefaultSearchEngine(this.engine.modelIndex);
118 }, 118 },
119 }); 119 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698