Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2046)

Unified Diff: chrome/browser/resources/options/geolocation_options.js

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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};
});

Powered by Google App Engine
This is Rietveld 408576698