OLD | NEW |
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 | 5 |
6 /** @interface */ | 6 /** @interface */ |
7 function InspectorFrontendHostAPI() | 7 function InspectorFrontendHostAPI() |
8 { | 8 { |
9 } | 9 } |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 CanceledSaveURL: "canceledSaveURL", | 32 CanceledSaveURL: "canceledSaveURL", |
33 ContextMenuCleared: "contextMenuCleared", | 33 ContextMenuCleared: "contextMenuCleared", |
34 ContextMenuItemSelected: "contextMenuItemSelected", | 34 ContextMenuItemSelected: "contextMenuItemSelected", |
35 DeviceCountUpdated: "deviceCountUpdated", | 35 DeviceCountUpdated: "deviceCountUpdated", |
36 DevicesDiscoveryConfigChanged: "devicesDiscoveryConfigChanged", | 36 DevicesDiscoveryConfigChanged: "devicesDiscoveryConfigChanged", |
37 DevicesPortForwardingStatusChanged: "devicesPortForwardingStatusChanged", | 37 DevicesPortForwardingStatusChanged: "devicesPortForwardingStatusChanged", |
38 DevicesUpdated: "devicesUpdated", | 38 DevicesUpdated: "devicesUpdated", |
39 DispatchMessage: "dispatchMessage", | 39 DispatchMessage: "dispatchMessage", |
40 DispatchMessageChunk: "dispatchMessageChunk", | 40 DispatchMessageChunk: "dispatchMessageChunk", |
41 EnterInspectElementMode: "enterInspectElementMode", | 41 EnterInspectElementMode: "enterInspectElementMode", |
42 EvaluateForTestInFrontend: "evaluateForTestInFrontend", | |
43 FileSystemsLoaded: "fileSystemsLoaded", | 42 FileSystemsLoaded: "fileSystemsLoaded", |
44 FileSystemRemoved: "fileSystemRemoved", | 43 FileSystemRemoved: "fileSystemRemoved", |
45 FileSystemAdded: "fileSystemAdded", | 44 FileSystemAdded: "fileSystemAdded", |
46 FileSystemFilesChanged: "fileSystemFilesChanged", | 45 FileSystemFilesChanged: "fileSystemFilesChanged", |
47 IndexingTotalWorkCalculated: "indexingTotalWorkCalculated", | 46 IndexingTotalWorkCalculated: "indexingTotalWorkCalculated", |
48 IndexingWorked: "indexingWorked", | 47 IndexingWorked: "indexingWorked", |
49 IndexingDone: "indexingDone", | 48 IndexingDone: "indexingDone", |
50 KeyEventUnhandled: "keyEventUnhandled", | 49 KeyEventUnhandled: "keyEventUnhandled", |
51 ReloadInspectedPage: "reloadInspectedPage", | 50 ReloadInspectedPage: "reloadInspectedPage", |
52 RevealSourceLine: "revealSourceLine", | 51 RevealSourceLine: "revealSourceLine", |
(...skipping 10 matching lines...) Expand all Loading... |
63 [InspectorFrontendHostAPI.Events.CanceledSaveURL, ["url"]], | 62 [InspectorFrontendHostAPI.Events.CanceledSaveURL, ["url"]], |
64 [InspectorFrontendHostAPI.Events.ContextMenuCleared, []], | 63 [InspectorFrontendHostAPI.Events.ContextMenuCleared, []], |
65 [InspectorFrontendHostAPI.Events.ContextMenuItemSelected, ["id"]], | 64 [InspectorFrontendHostAPI.Events.ContextMenuItemSelected, ["id"]], |
66 [InspectorFrontendHostAPI.Events.DeviceCountUpdated, ["count"]], | 65 [InspectorFrontendHostAPI.Events.DeviceCountUpdated, ["count"]], |
67 [InspectorFrontendHostAPI.Events.DevicesDiscoveryConfigChanged, ["discoverUs
bDevices", "portForwardingEnabled", "portForwardingConfig"]], | 66 [InspectorFrontendHostAPI.Events.DevicesDiscoveryConfigChanged, ["discoverUs
bDevices", "portForwardingEnabled", "portForwardingConfig"]], |
68 [InspectorFrontendHostAPI.Events.DevicesPortForwardingStatusChanged, ["statu
s"]], | 67 [InspectorFrontendHostAPI.Events.DevicesPortForwardingStatusChanged, ["statu
s"]], |
69 [InspectorFrontendHostAPI.Events.DevicesUpdated, ["devices"]], | 68 [InspectorFrontendHostAPI.Events.DevicesUpdated, ["devices"]], |
70 [InspectorFrontendHostAPI.Events.DispatchMessage, ["messageObject"]], | 69 [InspectorFrontendHostAPI.Events.DispatchMessage, ["messageObject"]], |
71 [InspectorFrontendHostAPI.Events.DispatchMessageChunk, ["messageChunk", "mes
sageSize"]], | 70 [InspectorFrontendHostAPI.Events.DispatchMessageChunk, ["messageChunk", "mes
sageSize"]], |
72 [InspectorFrontendHostAPI.Events.EnterInspectElementMode, []], | 71 [InspectorFrontendHostAPI.Events.EnterInspectElementMode, []], |
73 [InspectorFrontendHostAPI.Events.EvaluateForTestInFrontend, ["callId", "scri
pt"]], | |
74 [InspectorFrontendHostAPI.Events.FileSystemsLoaded, ["fileSystems"]], | 72 [InspectorFrontendHostAPI.Events.FileSystemsLoaded, ["fileSystems"]], |
75 [InspectorFrontendHostAPI.Events.FileSystemRemoved, ["fileSystemPath"]], | 73 [InspectorFrontendHostAPI.Events.FileSystemRemoved, ["fileSystemPath"]], |
76 [InspectorFrontendHostAPI.Events.FileSystemAdded, ["errorMessage", "fileSyst
em"]], | 74 [InspectorFrontendHostAPI.Events.FileSystemAdded, ["errorMessage", "fileSyst
em"]], |
77 [InspectorFrontendHostAPI.Events.FileSystemFilesChanged, ["paths"]], | 75 [InspectorFrontendHostAPI.Events.FileSystemFilesChanged, ["paths"]], |
78 [InspectorFrontendHostAPI.Events.IndexingTotalWorkCalculated, ["requestId",
"fileSystemPath", "totalWork"]], | 76 [InspectorFrontendHostAPI.Events.IndexingTotalWorkCalculated, ["requestId",
"fileSystemPath", "totalWork"]], |
79 [InspectorFrontendHostAPI.Events.IndexingWorked, ["requestId", "fileSystemPa
th", "worked"]], | 77 [InspectorFrontendHostAPI.Events.IndexingWorked, ["requestId", "fileSystemPa
th", "worked"]], |
80 [InspectorFrontendHostAPI.Events.IndexingDone, ["requestId", "fileSystemPath
"]], | 78 [InspectorFrontendHostAPI.Events.IndexingDone, ["requestId", "fileSystemPath
"]], |
81 [InspectorFrontendHostAPI.Events.KeyEventUnhandled, ["event"]], | 79 [InspectorFrontendHostAPI.Events.KeyEventUnhandled, ["event"]], |
82 [InspectorFrontendHostAPI.Events.ReloadInspectedPage, ["hard"]], | 80 [InspectorFrontendHostAPI.Events.ReloadInspectedPage, ["hard"]], |
83 [InspectorFrontendHostAPI.Events.RevealSourceLine, ["url", "lineNumber", "co
lumnNumber"]], | 81 [InspectorFrontendHostAPI.Events.RevealSourceLine, ["url", "lineNumber", "co
lumnNumber"]], |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 */ | 286 */ |
289 isUnderTest: function() { }, | 287 isUnderTest: function() { }, |
290 | 288 |
291 readyForTest: function() { }, | 289 readyForTest: function() { }, |
292 | 290 |
293 /** | 291 /** |
294 * @return {boolean} | 292 * @return {boolean} |
295 */ | 293 */ |
296 isHostedMode: function() { } | 294 isHostedMode: function() { } |
297 } | 295 } |
OLD | NEW |