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

Unified Diff: Source/devtools/front_end/security/module.json

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: Created 5 years, 7 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: Source/devtools/front_end/security/module.json
diff --git a/Source/devtools/front_end/security/module.json b/Source/devtools/front_end/security/module.json
new file mode 100644
index 0000000000000000000000000000000000000000..91f7588bf6036470a2ddf7f99cc145de7559b34d
--- /dev/null
+++ b/Source/devtools/front_end/security/module.json
@@ -0,0 +1,19 @@
+{
+ "extensions": [
+ {
+ "type": "@WebInspector.PanelFactory",
+ "name": "security",
+ "title": "Security",
+ "order": 7,
+ "className": "WebInspector.SecurityPanelFactory"
+ }
+ ],
+ "dependencies": [],
dgozman 2015/06/03 10:12:35 You probably have to depend on platform, host, and
lgarron 2015/06/11 22:54:47 What are each of these? The other panels don't hav
dgozman 2015/06/12 06:20:22 If you use something (class, function) from a file
lgarron 2015/06/12 19:56:01 Makes sense. I didn't know anything about the comp
dgozman 2015/06/15 16:58:41 Yep.
+ "experiment": "securityPanel",
+ "scripts": [
+ "SecurityPanel.js"
+ ],
+ "resources": [
+ "securityPanel.css"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698