| Index: chrome/browser/resources/settings/lifetime_browser_proxy.js
|
| diff --git a/chrome/browser/resources/settings/lifetime_browser_proxy.js b/chrome/browser/resources/settings/lifetime_browser_proxy.js
|
| index 0e7750fb665bc96fa028428d58597fc2f4503fab..b9915c0216d976e4abed9a81e3dd335a8fb4fbe0 100644
|
| --- a/chrome/browser/resources/settings/lifetime_browser_proxy.js
|
| +++ b/chrome/browser/resources/settings/lifetime_browser_proxy.js
|
| @@ -13,13 +13,13 @@ cr.define('settings', function() {
|
| // Triggers a browser relaunch.
|
| relaunch: function() {},
|
|
|
| -// <if expr="chromeos">
|
| + // <if expr="chromeos">
|
| // First signs out current user and then performs a restart.
|
| signOutAndRestart: function() {},
|
|
|
| // Triggers a factory reset.
|
| factoryReset: function() {},
|
| -// </if>
|
| + // </if>
|
| };
|
|
|
| /**
|
| @@ -40,7 +40,7 @@ cr.define('settings', function() {
|
| chrome.send('relaunch');
|
| },
|
|
|
| -// <if expr="chromeos">
|
| + // <if expr="chromeos">
|
| /** @override */
|
| signOutAndRestart: function() {
|
| chrome.send('signOutAndRestart');
|
| @@ -50,7 +50,7 @@ cr.define('settings', function() {
|
| factoryReset: function() {
|
| chrome.send('factoryReset');
|
| },
|
| -// </if>
|
| + // </if>
|
| };
|
|
|
| return {
|
|
|