| Index: chrome/browser/resources/options2/options_page.js
|
| diff --git a/chrome/browser/resources/options2/options_page.js b/chrome/browser/resources/options2/options_page.js
|
| index a4ccff7b9441b891df18ecb802d25bbf588e60f2..e91238637d74599c79fb1d419683e0cce5f5be61 100644
|
| --- a/chrome/browser/resources/options2/options_page.js
|
| +++ b/chrome/browser/resources/options2/options_page.js
|
| @@ -539,8 +539,7 @@ cr.define('options', function() {
|
| * be invoked to do final setup.
|
| */
|
| OptionsPage.initialize = function() {
|
| - chrome.send('coreOptionsInitialize');
|
| - this.initialized_ = true;
|
| + chrome.send('coreOptionsInitializePages');
|
| uber.onContentFrameLoaded();
|
|
|
| this.fixedHeaders_ = document.querySelectorAll('header');
|
| @@ -629,18 +628,6 @@ cr.define('options', function() {
|
| }
|
| };
|
|
|
| - /**
|
| - * Re-initializes the C++ handlers if necessary. This is called if the
|
| - * handlers are torn down and recreated but the DOM may not have been (in
|
| - * which case |initialize| won't be called again). If |initialize| hasn't been
|
| - * called, this does nothing (since it will be later, once the DOM has
|
| - * finished loading).
|
| - */
|
| - OptionsPage.reinitializeCore = function() {
|
| - if (!this.initialized_)
|
| - chrome.send('coreOptionsInitialize');
|
| - };
|
| -
|
| OptionsPage.prototype = {
|
| __proto__: cr.EventTarget.prototype,
|
|
|
|
|