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 window.InspectorFrontendHostAPI = InspectorFrontendHostAPI; | 10 window.InspectorFrontendHostAPI = InspectorFrontendHostAPI; |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 [InspectorFrontendHostAPI.Events.DevicesDiscoveryConfigChanged, "devicesDisc
overyConfigChanged", ["discoverUsbDevices", "portForwardingEnabled", "portForwar
dingConfig"]], | 68 [InspectorFrontendHostAPI.Events.DevicesDiscoveryConfigChanged, "devicesDisc
overyConfigChanged", ["discoverUsbDevices", "portForwardingEnabled", "portForwar
dingConfig"]], |
69 [InspectorFrontendHostAPI.Events.DevicesPortForwardingStatusChanged, "device
sPortForwardingStatusChanged", ["status"]], | 69 [InspectorFrontendHostAPI.Events.DevicesPortForwardingStatusChanged, "device
sPortForwardingStatusChanged", ["status"]], |
70 [InspectorFrontendHostAPI.Events.DevicesUpdated, "devicesUpdated", ["devices
"]], | 70 [InspectorFrontendHostAPI.Events.DevicesUpdated, "devicesUpdated", ["devices
"]], |
71 [InspectorFrontendHostAPI.Events.DispatchMessage, "dispatchMessage", ["messa
geObject"]], | 71 [InspectorFrontendHostAPI.Events.DispatchMessage, "dispatchMessage", ["messa
geObject"]], |
72 [InspectorFrontendHostAPI.Events.DispatchMessageChunk, "dispatchMessageChunk
", ["messageChunk", "messageSize"]], | 72 [InspectorFrontendHostAPI.Events.DispatchMessageChunk, "dispatchMessageChunk
", ["messageChunk", "messageSize"]], |
73 [InspectorFrontendHostAPI.Events.EnterInspectElementMode, "enterInspectEleme
ntMode", []], | 73 [InspectorFrontendHostAPI.Events.EnterInspectElementMode, "enterInspectEleme
ntMode", []], |
74 [InspectorFrontendHostAPI.Events.EvaluateForTestInFrontend, "evaluateForTest
InFrontend", ["callId", "script"]], | 74 [InspectorFrontendHostAPI.Events.EvaluateForTestInFrontend, "evaluateForTest
InFrontend", ["callId", "script"]], |
75 [InspectorFrontendHostAPI.Events.FileSystemsLoaded, "fileSystemsLoaded", ["f
ileSystems"]], | 75 [InspectorFrontendHostAPI.Events.FileSystemsLoaded, "fileSystemsLoaded", ["f
ileSystems"]], |
76 [InspectorFrontendHostAPI.Events.FileSystemRemoved, "fileSystemRemoved", ["f
ileSystemPath"]], | 76 [InspectorFrontendHostAPI.Events.FileSystemRemoved, "fileSystemRemoved", ["f
ileSystemPath"]], |
77 [InspectorFrontendHostAPI.Events.FileSystemAdded, "fileSystemAdded", ["error
Message", "fileSystem"]], | 77 [InspectorFrontendHostAPI.Events.FileSystemAdded, "fileSystemAdded", ["error
Message", "fileSystem"]], |
78 [InspectorFrontendHostAPI.Events.FileSystemFilesChanged, "fileSystemFilesCha
nged", ["paths"]], | 78 [InspectorFrontendHostAPI.Events.FileSystemFilesChanged, "fileSystemFilesCha
nged", ["changedPaths", "addedPaths", "removedPaths"]], |
79 [InspectorFrontendHostAPI.Events.IndexingTotalWorkCalculated, "indexingTotal
WorkCalculated", ["requestId", "fileSystemPath", "totalWork"]], | 79 [InspectorFrontendHostAPI.Events.IndexingTotalWorkCalculated, "indexingTotal
WorkCalculated", ["requestId", "fileSystemPath", "totalWork"]], |
80 [InspectorFrontendHostAPI.Events.IndexingWorked, "indexingWorked", ["request
Id", "fileSystemPath", "worked"]], | 80 [InspectorFrontendHostAPI.Events.IndexingWorked, "indexingWorked", ["request
Id", "fileSystemPath", "worked"]], |
81 [InspectorFrontendHostAPI.Events.IndexingDone, "indexingDone", ["requestId",
"fileSystemPath"]], | 81 [InspectorFrontendHostAPI.Events.IndexingDone, "indexingDone", ["requestId",
"fileSystemPath"]], |
82 [InspectorFrontendHostAPI.Events.KeyEventUnhandled, "keyEventUnhandled", ["e
vent"]], | 82 [InspectorFrontendHostAPI.Events.KeyEventUnhandled, "keyEventUnhandled", ["e
vent"]], |
83 [InspectorFrontendHostAPI.Events.ReloadInspectedPage, "reloadInspectedPage",
["hard"]], | 83 [InspectorFrontendHostAPI.Events.ReloadInspectedPage, "reloadInspectedPage",
["hard"]], |
84 [InspectorFrontendHostAPI.Events.RevealSourceLine, "revealSourceLine", ["url
", "lineNumber", "columnNumber"]], | 84 [InspectorFrontendHostAPI.Events.RevealSourceLine, "revealSourceLine", ["url
", "lineNumber", "columnNumber"]], |
85 [InspectorFrontendHostAPI.Events.SavedURL, "savedURL", ["url"]], | 85 [InspectorFrontendHostAPI.Events.SavedURL, "savedURL", ["url"]], |
86 [InspectorFrontendHostAPI.Events.SearchCompleted, "searchCompleted", ["reque
stId", "fileSystemPath", "files"]], | 86 [InspectorFrontendHostAPI.Events.SearchCompleted, "searchCompleted", ["reque
stId", "fileSystemPath", "files"]], |
87 [InspectorFrontendHostAPI.Events.SetInspectedTabId, "setInspectedTabId", ["t
abId"]], | 87 [InspectorFrontendHostAPI.Events.SetInspectedTabId, "setInspectedTabId", ["t
abId"]], |
88 [InspectorFrontendHostAPI.Events.SetUseSoftMenu, "setUseSoftMenu", ["useSoft
Menu"]], | 88 [InspectorFrontendHostAPI.Events.SetUseSoftMenu, "setUseSoftMenu", ["useSoft
Menu"]], |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 */ | 294 */ |
295 isUnderTest: function() { }, | 295 isUnderTest: function() { }, |
296 | 296 |
297 readyForTest: function() { }, | 297 readyForTest: function() { }, |
298 | 298 |
299 /** | 299 /** |
300 * @return {boolean} | 300 * @return {boolean} |
301 */ | 301 */ |
302 isHostedMode: function() { } | 302 isHostedMode: function() { } |
303 } | 303 } |
OLD | NEW |