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

Unified Diff: chrome/browser/resources/settings/certificate_manager_page/certificate_list.js

Issue 2946563002: Run clang-format on .js files in c/b/r/settings (Closed)
Patch Set: dschuyler@ review Created 3 years, 6 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/certificate_manager_page/certificate_list.js
diff --git a/chrome/browser/resources/settings/certificate_manager_page/certificate_list.js b/chrome/browser/resources/settings/certificate_manager_page/certificate_list.js
index 33e9e46665b656660ee7f68c55a7cb91d6a7accc..83cedff7d92122fe122774d5eee021b5d47bb96e 100644
--- a/chrome/browser/resources/settings/certificate_manager_page/certificate_list.js
+++ b/chrome/browser/resources/settings/certificate_manager_page/certificate_list.js
@@ -13,13 +13,15 @@ Polymer({
/** @type {!Array<!Certificate>} */
certificates: {
type: Array,
- value: function() { return []; },
+ value: function() {
+ return [];
+ },
},
/** @type {!CertificateType} */
certificateType: String,
-// <if expr="chromeos">
+ // <if expr="chromeos">
/** @private */
isGuest_: {
type: Boolean,
@@ -27,7 +29,7 @@ Polymer({
return loadTimeData.getBoolean('isGuest');
}
},
-// </if>
+ // </if>
},
behaviors: [I18nBehavior],
@@ -62,7 +64,7 @@ Polymer({
return this.certificateType != CertificateType.OTHER;
},
-// <if expr="chromeos">
+ // <if expr="chromeos">
/**
* @return {boolean}
* @private
@@ -70,7 +72,7 @@ Polymer({
canImportAndBind_: function() {
return !this.isGuest_ && this.certificateType == CertificateType.PERSONAL;
},
-// </if>
+ // </if>
/**
* Handles a rejected Promise returned from |browserProxy_|.
@@ -112,20 +114,20 @@ Polymer({
* @private
*/
onImportTap_: function(e) {
- this.handleImport_(false, /** @type {!HTMLElement} */ (
- Polymer.dom(e).localTarget));
+ this.handleImport_(
+ false, /** @type {!HTMLElement} */ (Polymer.dom(e).localTarget));
},
-// <if expr="chromeos">
+ // <if expr="chromeos">
/**
* @private
* @param {!Event} e
*/
onImportAndBindTap_: function(e) {
- this.handleImport_(true, /** @type {!HTMLElement} */ (
- Polymer.dom(e).localTarget));
+ this.handleImport_(
+ true, /** @type {!HTMLElement} */ (Polymer.dom(e).localTarget));
},
-// </if>
+ // </if>
/**
* @param {boolean} useHardwareBacked
@@ -135,18 +137,15 @@ Polymer({
handleImport_: function(useHardwareBacked, anchor) {
var browserProxy = settings.CertificatesBrowserProxyImpl.getInstance();
if (this.certificateType == CertificateType.PERSONAL) {
- browserProxy.importPersonalCertificate(useHardwareBacked).then(
- function(showPasswordPrompt) {
+ browserProxy.importPersonalCertificate(useHardwareBacked)
+ .then(function(showPasswordPrompt) {
if (showPasswordPrompt)
this.dispatchImportActionEvent_(null, anchor);
- }.bind(this),
- this.onRejected_.bind(this, anchor));
+ }.bind(this), this.onRejected_.bind(this, anchor));
} else if (this.certificateType == CertificateType.CA) {
- browserProxy.importCaCertificate().then(
- function(certificateName) {
- this.dispatchImportActionEvent_({name: certificateName}, anchor);
- }.bind(this),
- this.onRejected_.bind(this, anchor));
+ browserProxy.importCaCertificate().then(function(certificateName) {
+ this.dispatchImportActionEvent_({name: certificateName}, anchor);
+ }.bind(this), this.onRejected_.bind(this, anchor));
} else if (this.certificateType == CertificateType.SERVER) {
browserProxy.importServerCertificate().catch(
this.onRejected_.bind(this, anchor));

Powered by Google App Engine
This is Rietveld 408576698