| Index: third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHostAPI.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHostAPI.js b/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHostAPI.js
|
| index 5821f4c2bf1943f9d52a43a9868dddebbf3e4f42..8d2e5866ba1e293a43f2b1c2cf393797228f8dd9 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHostAPI.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHostAPI.js
|
| @@ -55,7 +55,8 @@ InspectorFrontendHostAPI.Events = {
|
| SearchCompleted: "searchCompleted",
|
| SetInspectedTabId: "setInspectedTabId",
|
| SetUseSoftMenu: "setUseSoftMenu",
|
| - ShowConsole: "showConsole"
|
| + ShowConsole: "showConsole",
|
| + ShowSecurityPanel: "showSecurityPanel"
|
| }
|
|
|
| InspectorFrontendHostAPI.EventDescriptors = [
|
| @@ -87,7 +88,8 @@ InspectorFrontendHostAPI.EventDescriptors = [
|
| [InspectorFrontendHostAPI.Events.SearchCompleted, ["requestId", "fileSystemPath", "files"]],
|
| [InspectorFrontendHostAPI.Events.SetInspectedTabId, ["tabId"]],
|
| [InspectorFrontendHostAPI.Events.SetUseSoftMenu, ["useSoftMenu"]],
|
| - [InspectorFrontendHostAPI.Events.ShowConsole, []]
|
| + [InspectorFrontendHostAPI.Events.ShowConsole, []],
|
| + [InspectorFrontendHostAPI.Events.ShowSecurityPanel, []]
|
| ];
|
|
|
| InspectorFrontendHostAPI.prototype = {
|
|
|