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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHostAPI.js

Issue 1819243002: [DevTools] Use InspectorFrontendHost.readyForTest for layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ready-for-test
Patch Set: resource-tree-reload.html fix Created 4 years, 9 months 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 unified diff | Download patch
OLDNEW
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
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",
42 FileSystemsLoaded: "fileSystemsLoaded", 43 FileSystemsLoaded: "fileSystemsLoaded",
43 FileSystemRemoved: "fileSystemRemoved", 44 FileSystemRemoved: "fileSystemRemoved",
44 FileSystemAdded: "fileSystemAdded", 45 FileSystemAdded: "fileSystemAdded",
45 FileSystemFilesChanged: "fileSystemFilesChanged", 46 FileSystemFilesChanged: "fileSystemFilesChanged",
46 IndexingTotalWorkCalculated: "indexingTotalWorkCalculated", 47 IndexingTotalWorkCalculated: "indexingTotalWorkCalculated",
47 IndexingWorked: "indexingWorked", 48 IndexingWorked: "indexingWorked",
48 IndexingDone: "indexingDone", 49 IndexingDone: "indexingDone",
49 KeyEventUnhandled: "keyEventUnhandled", 50 KeyEventUnhandled: "keyEventUnhandled",
50 ReloadInspectedPage: "reloadInspectedPage", 51 ReloadInspectedPage: "reloadInspectedPage",
51 RevealSourceLine: "revealSourceLine", 52 RevealSourceLine: "revealSourceLine",
(...skipping 10 matching lines...) Expand all
62 [InspectorFrontendHostAPI.Events.CanceledSaveURL, ["url"]], 63 [InspectorFrontendHostAPI.Events.CanceledSaveURL, ["url"]],
63 [InspectorFrontendHostAPI.Events.ContextMenuCleared, []], 64 [InspectorFrontendHostAPI.Events.ContextMenuCleared, []],
64 [InspectorFrontendHostAPI.Events.ContextMenuItemSelected, ["id"]], 65 [InspectorFrontendHostAPI.Events.ContextMenuItemSelected, ["id"]],
65 [InspectorFrontendHostAPI.Events.DeviceCountUpdated, ["count"]], 66 [InspectorFrontendHostAPI.Events.DeviceCountUpdated, ["count"]],
66 [InspectorFrontendHostAPI.Events.DevicesDiscoveryConfigChanged, ["discoverUs bDevices", "portForwardingEnabled", "portForwardingConfig"]], 67 [InspectorFrontendHostAPI.Events.DevicesDiscoveryConfigChanged, ["discoverUs bDevices", "portForwardingEnabled", "portForwardingConfig"]],
67 [InspectorFrontendHostAPI.Events.DevicesPortForwardingStatusChanged, ["statu s"]], 68 [InspectorFrontendHostAPI.Events.DevicesPortForwardingStatusChanged, ["statu s"]],
68 [InspectorFrontendHostAPI.Events.DevicesUpdated, ["devices"]], 69 [InspectorFrontendHostAPI.Events.DevicesUpdated, ["devices"]],
69 [InspectorFrontendHostAPI.Events.DispatchMessage, ["messageObject"]], 70 [InspectorFrontendHostAPI.Events.DispatchMessage, ["messageObject"]],
70 [InspectorFrontendHostAPI.Events.DispatchMessageChunk, ["messageChunk", "mes sageSize"]], 71 [InspectorFrontendHostAPI.Events.DispatchMessageChunk, ["messageChunk", "mes sageSize"]],
71 [InspectorFrontendHostAPI.Events.EnterInspectElementMode, []], 72 [InspectorFrontendHostAPI.Events.EnterInspectElementMode, []],
73 [InspectorFrontendHostAPI.Events.EvaluateForTestInFrontend, ["callId", "scri pt"]],
72 [InspectorFrontendHostAPI.Events.FileSystemsLoaded, ["fileSystems"]], 74 [InspectorFrontendHostAPI.Events.FileSystemsLoaded, ["fileSystems"]],
73 [InspectorFrontendHostAPI.Events.FileSystemRemoved, ["fileSystemPath"]], 75 [InspectorFrontendHostAPI.Events.FileSystemRemoved, ["fileSystemPath"]],
74 [InspectorFrontendHostAPI.Events.FileSystemAdded, ["errorMessage", "fileSyst em"]], 76 [InspectorFrontendHostAPI.Events.FileSystemAdded, ["errorMessage", "fileSyst em"]],
75 [InspectorFrontendHostAPI.Events.FileSystemFilesChanged, ["paths"]], 77 [InspectorFrontendHostAPI.Events.FileSystemFilesChanged, ["paths"]],
76 [InspectorFrontendHostAPI.Events.IndexingTotalWorkCalculated, ["requestId", "fileSystemPath", "totalWork"]], 78 [InspectorFrontendHostAPI.Events.IndexingTotalWorkCalculated, ["requestId", "fileSystemPath", "totalWork"]],
77 [InspectorFrontendHostAPI.Events.IndexingWorked, ["requestId", "fileSystemPa th", "worked"]], 79 [InspectorFrontendHostAPI.Events.IndexingWorked, ["requestId", "fileSystemPa th", "worked"]],
78 [InspectorFrontendHostAPI.Events.IndexingDone, ["requestId", "fileSystemPath "]], 80 [InspectorFrontendHostAPI.Events.IndexingDone, ["requestId", "fileSystemPath "]],
79 [InspectorFrontendHostAPI.Events.KeyEventUnhandled, ["event"]], 81 [InspectorFrontendHostAPI.Events.KeyEventUnhandled, ["event"]],
80 [InspectorFrontendHostAPI.Events.ReloadInspectedPage, ["hard"]], 82 [InspectorFrontendHostAPI.Events.ReloadInspectedPage, ["hard"]],
81 [InspectorFrontendHostAPI.Events.RevealSourceLine, ["url", "lineNumber", "co lumnNumber"]], 83 [InspectorFrontendHostAPI.Events.RevealSourceLine, ["url", "lineNumber", "co lumnNumber"]],
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 */ 288 */
287 isUnderTest: function() { }, 289 isUnderTest: function() { },
288 290
289 readyForTest: function() { }, 291 readyForTest: function() { },
290 292
291 /** 293 /**
292 * @return {boolean} 294 * @return {boolean}
293 */ 295 */
294 isHostedMode: function() { } 296 isHostedMode: function() { }
295 } 297 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/devtools.js ('k') | third_party/WebKit/Source/devtools/front_end/main/Main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698