| Index: chrome/browser/resources/options/browser_options.js
|
| ===================================================================
|
| --- chrome/browser/resources/options/browser_options.js (revision 202001)
|
| +++ chrome/browser/resources/options/browser_options.js (working copy)
|
| @@ -1050,6 +1050,24 @@
|
| },
|
|
|
| /**
|
| + * Reports a local error (e.g., disk full) to the "create" overlay during
|
| + * profile creation.
|
| + * @private
|
| + */
|
| + showCreateProfileLocalError_: function() {
|
| + CreateProfileOverlay.onLocalError();
|
| + },
|
| +
|
| + /**
|
| + * Reports successful profile creation to the "create" overlay.
|
| + * @param {boolean} isLimited True if the new profile is for a limited user.
|
| + * @private
|
| + */
|
| + showCreateProfileSuccess_: function(isLimited) {
|
| + CreateProfileOverlay.onSuccess(isLimited);
|
| + },
|
| +
|
| + /**
|
| * Returns the currently active profile for this browser window.
|
| * @return {Object} A profile info object.
|
| * @private
|
| @@ -1429,6 +1447,8 @@
|
| 'setupPageZoomSelector',
|
| 'setupProxySettingsSection',
|
| 'showBluetoothSettings',
|
| + 'showCreateProfileLocalError',
|
| + 'showCreateProfileSuccess',
|
| 'showMouseControls',
|
| 'showTouchpadControls',
|
| 'updateAccountPicture',
|
|
|