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

Unified Diff: chrome/browser/resources/options/hotword_confirm_dialog.js

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (Closed)
Patch Set: Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
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};
});

Powered by Google App Engine
This is Rietveld 408576698