| 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) {
|
|
|