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

Unified Diff: chrome/browser/resources/settings/printing_page/printing_page.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/printing_page/printing_page.js
diff --git a/chrome/browser/resources/settings/printing_page/printing_page.js b/chrome/browser/resources/settings/printing_page/printing_page.js
index fbc14d451c03269c71c194e37c338838e7091b33..a58001fbe48169c3ecbfe61c6a7eef9ea6682204 100644
--- a/chrome/browser/resources/settings/printing_page/printing_page.js
+++ b/chrome/browser/resources/settings/printing_page/printing_page.js
@@ -12,7 +12,7 @@ Polymer({
notify: true,
},
-<if expr="chromeos">
+// <if expr="chromeos">
/**
* Whether to show CUPS printers settings.
* @private {boolean}
@@ -23,7 +23,7 @@ Polymer({
return loadTimeData.getBoolean('showCupsPrintingFeatures');
},
},
-</if>
+// </if>
/** @type {!Array<!CupsPrinterInfo>} */
cupsPrinters: {
@@ -40,7 +40,7 @@ Polymer({
'show-cups-printer-details': 'onShowCupsPrinterDetailsPage_',
},
-<if expr="chromeos">
+// <if expr="chromeos">
/** @private */
onTapCupsPrinters_: function() {
settings.navigateTo(settings.Route.CUPS_PRINTERS);
@@ -51,7 +51,7 @@ Polymer({
settings.navigateTo(settings.Route.CUPS_PRINTER_DETAIL);
this.$.arraySelector.select(event.detail);
},
-</if>
+// </if>
/** @private */
onTapCloudPrinters_: function() {

Powered by Google App Engine
This is Rietveld 408576698