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

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

Issue 1433953002: Implement a ShowSecurityPanel() call in the browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make sure the DevTools stays open if ShowSecurityPanel() is called when DevTools is already open. Created 5 years, 1 month 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/devtools.js
diff --git a/third_party/WebKit/Source/devtools/front_end/devtools.js b/third_party/WebKit/Source/devtools/front_end/devtools.js
index efc0ccec309bc52d580c792fcd2dd67d9ad5d767..f63fef2f124e9d4a7d5e1d59b16880c348cbf8ae 100644
--- a/third_party/WebKit/Source/devtools/front_end/devtools.js
+++ b/third_party/WebKit/Source/devtools/front_end/devtools.js
@@ -279,6 +279,11 @@ DevToolsAPIImpl.prototype = {
this._dispatchOnInspectorFrontendAPI("showConsole", []);
},
+ showSecurityPanel: function()
+ {
+ this._dispatchOnInspectorFrontendAPI("showSecurityPanel", []);
+ },
+
/**
* @param {number} id
* @param {string} chunk

Powered by Google App Engine
This is Rietveld 408576698