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

Unified Diff: Source/devtools/front_end/sdk/Target.js

Issue 1159163005: Add a minimal Security panel to DevTools (behind a hidden experiment). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address dgozman's comments. Created 5 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
« no previous file with comments | « Source/devtools/front_end/sdk/SecurityManager.js ('k') | Source/devtools/front_end/sdk/module.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/sdk/Target.js
diff --git a/Source/devtools/front_end/sdk/Target.js b/Source/devtools/front_end/sdk/Target.js
index 125248e43ad41a10cba9f0d919275df75e780c84..551c67a9bcadab70c65a1b09c36a08f3206187eb 100644
--- a/Source/devtools/front_end/sdk/Target.js
+++ b/Source/devtools/front_end/sdk/Target.js
@@ -112,6 +112,8 @@ WebInspector.Target.prototype = {
this.consoleModel = new WebInspector.ConsoleModel(this);
/** @type {!WebInspector.NetworkManager} */
this.networkManager = new WebInspector.NetworkManager(this);
+ /** @type {!WebInspector.SecurityManager} */
+ this.securityManager = new WebInspector.SecurityManager(this);
lgarron 2015/06/12 19:56:02 If I move SecurityManager.js to security/ instead
dgozman 2015/06/15 16:58:41 Just don't create it here. See WebInspector.Animat
/** @type {!WebInspector.ResourceTreeModel} */
this.resourceTreeModel = new WebInspector.ResourceTreeModel(this);
/** @type {!WebInspector.NetworkLog} */
« no previous file with comments | « Source/devtools/front_end/sdk/SecurityManager.js ('k') | Source/devtools/front_end/sdk/module.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698