| Index: Source/devtools/front_end/host/InspectorFrontendHost.js
|
| diff --git a/Source/devtools/front_end/host/InspectorFrontendHost.js b/Source/devtools/front_end/host/InspectorFrontendHost.js
|
| index 0624b99b27f862e45bd3d4e0af2baa0a0637e6d4..caf61f588b8ec3b449a747c0e0f42435afa54bc1 100644
|
| --- a/Source/devtools/front_end/host/InspectorFrontendHost.js
|
| +++ b/Source/devtools/front_end/host/InspectorFrontendHost.js
|
| @@ -50,6 +50,7 @@ InspectorFrontendHostAPI.Events = {
|
| DeviceCountUpdated: "deviceCountUpdated",
|
| DevicesUpdated: "devicesUpdated",
|
| DispatchMessage: "dispatchMessage",
|
| + DispatchMessageChunk: "dispatchMessageChunk",
|
| EnterInspectElementMode: "enterInspectElementMode",
|
| FileSystemsLoaded: "fileSystemsLoaded",
|
| FileSystemRemoved: "fileSystemRemoved",
|
| @@ -74,6 +75,7 @@ InspectorFrontendHostAPI.EventDescriptors = [
|
| [InspectorFrontendHostAPI.Events.DeviceCountUpdated, ["count"]],
|
| [InspectorFrontendHostAPI.Events.DevicesUpdated, ["devices"]],
|
| [InspectorFrontendHostAPI.Events.DispatchMessage, ["messageObject"]],
|
| + [InspectorFrontendHostAPI.Events.DispatchMessageChunk, ["messageChunk", "messageSize"]],
|
| [InspectorFrontendHostAPI.Events.EnterInspectElementMode, []],
|
| [InspectorFrontendHostAPI.Events.FileSystemsLoaded, ["fileSystems"]],
|
| [InspectorFrontendHostAPI.Events.FileSystemRemoved, ["fileSystemPath"]],
|
|
|