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

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

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 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/SecurityModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/security/SecurityModel.js b/third_party/WebKit/Source/devtools/front_end/security/SecurityModel.js
index 7e56aaeab3819bd2e099a24eaf523a82e6903c27..bf0b25b83e6a7ce3a5ecdd05f4c332c85d33343c 100644
--- a/third_party/WebKit/Source/devtools/front_end/security/SecurityModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/security/SecurityModel.js
@@ -14,12 +14,12 @@ WebInspector.SecurityModel = function(target)
this._securityAgent = target.securityAgent();
target.registerSecurityDispatcher(this._dispatcher);
this._securityAgent.enable();
-}
+};
/** @enum {symbol} */
WebInspector.SecurityModel.Events = {
SecurityStateChanged: Symbol("SecurityStateChanged")
-}
+};
WebInspector.SecurityModel.prototype = {
__proto__: WebInspector.SDKModel.prototype,
@@ -28,7 +28,7 @@ WebInspector.SecurityModel.prototype = {
{
this._securityAgent.showCertificateViewer();
}
-}
+};
/**
* @param {!WebInspector.Target} target
@@ -40,7 +40,7 @@ WebInspector.SecurityModel.fromTarget = function(target)
if (!model)
model = new WebInspector.SecurityModel(target);
return model;
-}
+};
/**
* @param {!SecurityAgent.SecurityState} a
@@ -72,7 +72,7 @@ WebInspector.SecurityModel.SecurityStateComparator = function(a, b)
var bScore = securityStateMap.get(b) || 0;
return aScore - bScore;
-}
+};
/**
* @constructor
@@ -86,7 +86,7 @@ WebInspector.PageSecurityState = function(securityState, explanations, insecureC
this.explanations = explanations;
this.insecureContentStatus = insecureContentStatus;
this.schemeIsCryptographic = schemeIsCryptographic;
-}
+};
/**
* @constructor
@@ -95,7 +95,7 @@ WebInspector.PageSecurityState = function(securityState, explanations, insecureC
WebInspector.SecurityDispatcher = function(model)
{
this._model = model;
-}
+};
WebInspector.SecurityDispatcher.prototype = {
/**
@@ -110,4 +110,4 @@ WebInspector.SecurityDispatcher.prototype = {
var pageSecurityState = new WebInspector.PageSecurityState(securityState, explanations || [], insecureContentStatus || null, schemeIsCryptographic || false);
this._model.dispatchEventToListeners(WebInspector.SecurityModel.Events.SecurityStateChanged, pageSecurityState);
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698