| Index: chrome/browser/resources/options/confirm_dialog.js
|
| diff --git a/chrome/browser/resources/options/confirm_dialog.js b/chrome/browser/resources/options/confirm_dialog.js
|
| index c70c338b7ae47f7414948b7e63dd85235d121385..06245a484ee2dfb2f976c86d116e6bbe25f9ec58 100644
|
| --- a/chrome/browser/resources/options/confirm_dialog.js
|
| +++ b/chrome/browser/resources/options/confirm_dialog.js
|
| @@ -27,8 +27,9 @@ cr.define('options', function() {
|
| * |undefined|.
|
| * @extends {options.SettingsDialog}
|
| */
|
| - function ConfirmDialog(name, title, pageDivName, okButton, cancelButton, pref,
|
| - metric, opt_confirmedPref, opt_confirmValue) {
|
| + function ConfirmDialog(
|
| + name, title, pageDivName, okButton, cancelButton, pref, metric,
|
| + opt_confirmedPref, opt_confirmValue) {
|
| SettingsDialog.call(this, name, title, pageDivName, okButton, cancelButton);
|
|
|
| /** @protected */
|
| @@ -128,7 +129,5 @@ cr.define('options', function() {
|
| },
|
| };
|
|
|
| - return {
|
| - ConfirmDialog: ConfirmDialog
|
| - };
|
| + return {ConfirmDialog: ConfirmDialog};
|
| });
|
|
|