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

Unified Diff: chrome/browser/resources/settings/site_settings/site_data.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/site_settings/site_data.js
diff --git a/chrome/browser/resources/settings/site_settings/site_data.js b/chrome/browser/resources/settings/site_settings/site_data.js
index ab87956c66256e9e918dbc3ba5a8ea3af5472d7f..936cefce4a496ae4b3358c48464c45e78d6ea1b0 100644
--- a/chrome/browser/resources/settings/site_settings/site_data.js
+++ b/chrome/browser/resources/settings/site_settings/site_data.js
@@ -81,8 +81,8 @@ Polymer({
onConfirmDeleteMultipleSites_: function(e) {
e.preventDefault();
this.idToDelete_ = ''; // Delete all.
- this.confirmationDeleteMsg_ = loadTimeData.getString(
- 'siteSettingsCookieRemoveMultipleConfirmation');
+ this.confirmationDeleteMsg_ =
+ loadTimeData.getString('siteSettingsCookieRemoveMultipleConfirmation');
this.$.confirmDeleteDialog.showModal();
},
@@ -120,7 +120,7 @@ Polymer({
this.browserProxy.removeCookie(items[i].id);
}
// We just deleted all items found by the filter, let's reset the filter.
- /** @type {SettingsSubpageSearchElement} */(this.$.filter).setValue('');
+ /** @type {SettingsSubpageSearchElement} */ (this.$.filter).setValue('');
}
},
@@ -129,7 +129,8 @@ Polymer({
* @private
*/
onSiteTap_: function(event) {
- settings.navigateTo(settings.Route.SITE_SETTINGS_DATA_DETAILS,
+ settings.navigateTo(
+ settings.Route.SITE_SETTINGS_DATA_DETAILS,
new URLSearchParams('site=' + event.model.item.site));
},
});

Powered by Google App Engine
This is Rietveld 408576698