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

Unified Diff: third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js

Issue 1907263002: DevTools: Fix all outstanding JavaScript style issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove yoda disable. fix throw parens Created 4 years, 8 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: third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js b/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
index 2bc3e5f51ccdabe1cbaf2892e73c393dae294821..82dbe3b343057331222e4bd7dd7199ece3ad1a68 100644
--- a/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
@@ -619,7 +619,7 @@ WebInspector.SecurityMainView.prototype = {
this.refreshExplanations();
},
- refreshExplanations: function ()
+ refreshExplanations: function()
{
this._securityExplanations.removeChildren();
for (var explanation of this._explanations)
@@ -628,7 +628,7 @@ WebInspector.SecurityMainView.prototype = {
this._addMixedContentExplanations();
},
- _addMixedContentExplanations: function ()
+ _addMixedContentExplanations: function()
{
if (!this._schemeIsCryptographic)
return;
@@ -802,7 +802,7 @@ WebInspector.SecurityOriginView = function(panel, origin, originState)
table.addRow("", WebInspector.SecurityPanel.createCertificateViewerButton(WebInspector.UIString("Open full certificate details"), originState.securityDetails.certificateId));
}
- function displayCertificateDetailsUnavailable ()
+ function displayCertificateDetailsUnavailable()
{
certificateSection.createChild("div").textContent = WebInspector.UIString("Certificate details unavailable.");
}

Powered by Google App Engine
This is Rietveld 408576698