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

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

Issue 2617663002: WIP: run clang-format-js on lots of things (Closed)
Patch Set: merge 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..5c5d6243503b083a5a1ec8b092393be8f0421430 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> */
};
/**
@@ -66,8 +66,8 @@ cr.define('settings', function() {
ResetBrowserProxyImpl.prototype = {
/** @override */
performResetProfileSettings: function(sendSettings, requestOrigin) {
- return cr.sendWithPromise('performResetProfileSettings',
- sendSettings, requestOrigin);
+ return cr.sendWithPromise(
+ 'performResetProfileSettings', sendSettings, requestOrigin);
},
/** @override */
@@ -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