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

Unified Diff: chrome/browser/resources/settings/appearance_page/appearance_browser_proxy.js

Issue 2946563002: Run clang-format on .js files in c/b/r/settings (Closed)
Patch Set: dschuyler@ review 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/settings/appearance_page/appearance_browser_proxy.js
diff --git a/chrome/browser/resources/settings/appearance_page/appearance_browser_proxy.js b/chrome/browser/resources/settings/appearance_page/appearance_browser_proxy.js
index 65b7698028c9486cd875423cec6ad8f35d39ba92..5006a3f41fef4564e6e1ffcab3e7e4c41941d01e 100644
--- a/chrome/browser/resources/settings/appearance_page/appearance_browser_proxy.js
+++ b/chrome/browser/resources/settings/appearance_page/appearance_browser_proxy.js
@@ -19,15 +19,15 @@ cr.define('settings', function() {
/** @return {boolean} Whether the current profile is supervised. */
isSupervised: assertNotReached,
-// <if expr="chromeos">
+ // <if expr="chromeos">
openWallpaperManager: assertNotReached,
-// </if>
+ // </if>
useDefaultTheme: assertNotReached,
-// <if expr="is_linux and not chromeos">
+ // <if expr="is_linux and not chromeos">
useSystemTheme: assertNotReached,
-// </if>
+ // </if>
/**
* @param {string} url The url of which to check validity.
@@ -64,24 +64,24 @@ cr.define('settings', function() {
return loadTimeData.getBoolean('isSupervised');
},
-// <if expr="chromeos">
+ // <if expr="chromeos">
/** @override */
openWallpaperManager: function() {
chrome.send('openWallpaperManager');
},
-// </if>
+ // </if>
/** @override */
useDefaultTheme: function() {
chrome.send('useDefaultTheme');
},
-// <if expr="is_linux and not chromeos">
+ // <if expr="is_linux and not chromeos">
/** @override */
useSystemTheme: function() {
chrome.send('useSystemTheme');
},
-// </if>
+ // </if>
/** @override */
validateStartupPage: function(url) {

Powered by Google App Engine
This is Rietveld 408576698