| Index: chrome/browser/resources/options/autofill_edit_address_overlay.js
|
| diff --git a/chrome/browser/resources/options/autofill_edit_address_overlay.js b/chrome/browser/resources/options/autofill_edit_address_overlay.js
|
| index d3e211324e0c88ddad491eece37fc27da00a1a9a..3c9fe083153eab259f0fa1336c5743468be3786b 100644
|
| --- a/chrome/browser/resources/options/autofill_edit_address_overlay.js
|
| +++ b/chrome/browser/resources/options/autofill_edit_address_overlay.js
|
| @@ -3,7 +3,8 @@
|
| // found in the LICENSE file.
|
|
|
| cr.define('options', function() {
|
| - /** @const */ var OptionsPage = options.OptionsPage;
|
| + /** @const */ var Page = cr.ui.pageManager.Page;
|
| + /** @const */ var PageManager = cr.ui.pageManager.PageManager;
|
| /** @const */ var ArrayDataModel = cr.ui.ArrayDataModel;
|
|
|
| /**
|
| @@ -12,15 +13,15 @@ cr.define('options', function() {
|
| * @class
|
| */
|
| function AutofillEditAddressOverlay() {
|
| - OptionsPage.call(this, 'autofillEditAddress',
|
| - loadTimeData.getString('autofillEditAddressTitle'),
|
| - 'autofill-edit-address-overlay');
|
| + Page.call(this, 'autofillEditAddress',
|
| + loadTimeData.getString('autofillEditAddressTitle'),
|
| + 'autofill-edit-address-overlay');
|
| }
|
|
|
| cr.addSingletonGetter(AutofillEditAddressOverlay);
|
|
|
| AutofillEditAddressOverlay.prototype = {
|
| - __proto__: OptionsPage.prototype,
|
| + __proto__: Page.prototype,
|
|
|
| /**
|
| * The GUID of the loaded address.
|
| @@ -48,7 +49,7 @@ cr.define('options', function() {
|
| * Initializes the page.
|
| */
|
| initializePage: function() {
|
| - OptionsPage.prototype.initializePage.call(this);
|
| + Page.prototype.initializePage.call(this);
|
|
|
| this.createMultiValueLists_();
|
|
|
| @@ -154,7 +155,7 @@ cr.define('options', function() {
|
| this.guid_ = '';
|
| this.languageCode_ = '';
|
| this.savedInputFields_ = {};
|
| - OptionsPage.closeOverlay();
|
| + PageManager.closeOverlay();
|
| },
|
|
|
| /**
|
|
|