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

Unified Diff: chrome/browser/resources/settings/reset_page/reset_browser_proxy.js

Issue 2617823002: GRIT: put <if> and <include> behind comments in .js files to make syntactically valid JS (Closed)
Patch Set: add dep Created 3 years, 11 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/reset_page/reset_browser_proxy.js
diff --git a/chrome/browser/resources/settings/reset_page/reset_browser_proxy.js b/chrome/browser/resources/settings/reset_page/reset_browser_proxy.js
index 96817a8f483d00f4af625b77628f803857ab9b70..f9b9fb6407f2aa3f561cb135e96b66d17f1f4e0a 100644
--- a/chrome/browser/resources/settings/reset_page/reset_browser_proxy.js
+++ b/chrome/browser/resources/settings/reset_page/reset_browser_proxy.js
@@ -43,7 +43,7 @@ cr.define('settings', function() {
*/
getTriggeredResetToolName: function() {},
-<if expr="chromeos">
+// <if expr="chromeos">
/**
* A method to be called when the reset powerwash dialog is shown.
*/
@@ -53,7 +53,7 @@ cr.define('settings', function() {
* Initiates a factory reset and restarts ChromeOS.
*/
requestFactoryResetRestart: function() {},
-</if>
+// </if>
};
/**
@@ -104,7 +104,7 @@ cr.define('settings', function() {
return cr.sendWithPromise('getTriggeredResetToolName');
},
-<if expr="chromeos">
+// <if expr="chromeos">
/** @override */
onPowerwashDialogShow: function() {
chrome.send('onPowerwashDialogShow');
@@ -114,7 +114,7 @@ cr.define('settings', function() {
requestFactoryResetRestart: function() {
chrome.send('requestFactoryResetRestart');
},
-</if>
+// </if>
};
return {

Powered by Google App Engine
This is Rietveld 408576698