Index: chrome/browser/resources/options/geolocation_options.js |
diff --git a/chrome/browser/resources/options/geolocation_options.js b/chrome/browser/resources/options/geolocation_options.js |
index 1215ea9e11f8be6c5ecf54b746a6b0a70cb0e538..073bb79ff44f41b95bbe401af5b6e5bb59dd2074 100644 |
--- a/chrome/browser/resources/options/geolocation_options.js |
+++ b/chrome/browser/resources/options/geolocation_options.js |
@@ -3,7 +3,7 @@ |
// found in the LICENSE file. |
cr.define('options', function() { |
- var OptionsPage = options.OptionsPage; |
+ var Page = cr.ui.pageManager.Page; |
/** |
* GeolocationOptions class |
@@ -12,16 +12,15 @@ cr.define('options', function() { |
* @class |
*/ |
function GeolocationOptions() { |
- OptionsPage.call(this, |
- 'geolocationOptions', |
- loadTimeData.getString('geolocationOptionsPageTabTitle'), |
- 'geolocationCheckbox'); |
+ Page.call(this, 'geolocationOptions', |
+ loadTimeData.getString('geolocationOptionsPageTabTitle'), |
+ 'geolocationCheckbox'); |
}; |
cr.addSingletonGetter(GeolocationOptions); |
GeolocationOptions.prototype = { |
- __proto__: OptionsPage.prototype |
+ __proto__: Page.prototype |
}; |
// TODO(robliao): Determine if a full unroll is necessary |