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

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

Issue 1309953003: Remove unused securityState code in WebInspector.SecurityModel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/security/SecurityModel.js
diff --git a/Source/devtools/front_end/security/SecurityModel.js b/Source/devtools/front_end/security/SecurityModel.js
index d0058571ee2c60a7bbfa0066d805e7ef4088d897..b90015a3879bc0c030f8250b84c0d5adb2d7efd6 100644
--- a/Source/devtools/front_end/security/SecurityModel.js
+++ b/Source/devtools/front_end/security/SecurityModel.js
@@ -14,8 +14,6 @@ WebInspector.SecurityModel = function(target)
this._securityAgent = target.securityAgent();
target.registerSecurityDispatcher(this._dispatcher);
this._securityAgent.enable();
-
- this._securityState = SecurityAgent.SecurityState.Unknown;
}
WebInspector.SecurityModel.EventTypes = {
@@ -23,14 +21,6 @@ WebInspector.SecurityModel.EventTypes = {
}
WebInspector.SecurityModel.prototype = {
- /**
- * @return {!SecurityAgent.SecurityState} securityState
- */
- securityState: function()
- {
- return /** @type {!SecurityAgent.SecurityState} */ (this._securityState);
- },
-
__proto__: WebInspector.SDKModel.prototype
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698