OLD | NEW |
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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 this.closePopupMenu_(); | 99 this.closePopupMenu_(); |
100 | 100 |
101 this.showEditSearchEngineDialog_ = true; | 101 this.showEditSearchEngineDialog_ = true; |
102 this.async(function() { | 102 this.async(function() { |
103 var dialog = this.$$('settings-search-engine-dialog'); | 103 var dialog = this.$$('settings-search-engine-dialog'); |
104 // Register listener to detect when the dialog is closed. Flip the boolean | 104 // Register listener to detect when the dialog is closed. Flip the boolean |
105 // once closed to force a restamp next time it is shown such that the | 105 // once closed to force a restamp next time it is shown such that the |
106 // previous dialog's contents are cleared. | 106 // previous dialog's contents are cleared. |
107 dialog.addEventListener('close', function() { | 107 dialog.addEventListener('close', function() { |
108 this.showEditSearchEngineDialog_ = false; | 108 this.showEditSearchEngineDialog_ = false; |
109 this.$$('paper-icon-button').focus(); | 109 cr.ui.focusWithoutInk(assert(this.$$('paper-icon-button'))); |
110 }.bind(this)); | 110 }.bind(this)); |
111 }.bind(this)); | 111 }.bind(this)); |
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 }); |
OLD | NEW |