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 30071df39122061152f00621b21532eae0d18ab9..e815a98431ddfffe4f20ea7586ee3b2dc11fa49b 100644 |
--- a/chrome/browser/resources/options/geolocation_options.js |
+++ b/chrome/browser/resources/options/geolocation_options.js |
@@ -12,22 +12,19 @@ cr.define('options', function() { |
* @extends {cr.ui.pageManager.Page} |
*/ |
function GeolocationOptions() { |
- Page.call(this, 'geolocationOptions', |
- loadTimeData.getString('geolocationOptionsPageTabTitle'), |
- 'geolocationCheckbox'); |
+ Page.call( |
+ this, 'geolocationOptions', |
+ loadTimeData.getString('geolocationOptionsPageTabTitle'), |
+ 'geolocationCheckbox'); |
} |
cr.addSingletonGetter(GeolocationOptions); |
- GeolocationOptions.prototype = { |
- __proto__: Page.prototype |
- }; |
+ GeolocationOptions.prototype = {__proto__: Page.prototype}; |
// TODO(robliao): Determine if a full unroll is necessary |
// (http://crbug.com/306613). |
GeolocationOptions.showGeolocationOption = function() {}; |
- return { |
- GeolocationOptions: GeolocationOptions |
- }; |
+ return {GeolocationOptions: GeolocationOptions}; |
}); |