| Index: chrome/browser/resources/options/managed_user_settings.js
|
| ===================================================================
|
| --- chrome/browser/resources/options/managed_user_settings.js (revision 177135)
|
| +++ chrome/browser/resources/options/managed_user_settings.js (working copy)
|
| @@ -51,6 +51,18 @@
|
| },
|
| };
|
|
|
| + /** @override */
|
| + handleConfirm: function() {
|
| + SettingsDialog.prototype.handleConfirm.call(this);
|
| + chrome.send('confirmManagedUserSettings');
|
| + };
|
| +
|
| + /** @override */
|
| + handleCancel: function() {
|
| + SettingsDialog.prototype.handleCancel.call(this);
|
| + chrome.send('cancelManagedUserSettings');
|
| + };
|
| +
|
| // Export
|
| return {
|
| ManagedUserSettings: ManagedUserSettings
|
|
|