| Index: chrome/browser/resources/options/hotword_confirm_dialog.js
|
| diff --git a/chrome/browser/resources/options/hotword_confirm_dialog.js b/chrome/browser/resources/options/hotword_confirm_dialog.js
|
| index a14d1fe929686ea4ee905e16fcdc9754ebe3a5f6..b5e2f32bc0bec385dc02c6ea6738a42635d39ca4 100644
|
| --- a/chrome/browser/resources/options/hotword_confirm_dialog.js
|
| +++ b/chrome/browser/resources/options/hotword_confirm_dialog.js
|
| @@ -18,14 +18,15 @@ cr.define('options', function() {
|
| * @extends {options.ConfirmDialog}
|
| */
|
| function HotwordConfirmDialog() {
|
| - ConfirmDialog.call(this,
|
| + ConfirmDialog.call(
|
| + this,
|
| 'hotwordConfim', // name
|
| loadTimeData.getString('hotwordConfirmOverlayTabTitle'),
|
| 'hotword-confirm-overlay', // pageDivName
|
| assertInstanceof($('hotword-confirm-ok'), HTMLButtonElement),
|
| assertInstanceof($('hotword-confirm-cancel'), HTMLButtonElement),
|
| - $('hotword-search-enable')['pref'], // pref
|
| - $('hotword-search-enable')['metric']); // metric
|
| + $('hotword-search-enable')['pref'], // pref
|
| + $('hotword-search-enable')['metric']); // metric
|
|
|
| this.indicator = $('hotword-search-setting-indicator');
|
| }
|
| @@ -75,7 +76,5 @@ cr.define('options', function() {
|
| }
|
| };
|
|
|
| - return {
|
| - HotwordConfirmDialog: HotwordConfirmDialog
|
| - };
|
| + return {HotwordConfirmDialog: HotwordConfirmDialog};
|
| });
|
|
|