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

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

Issue 2384343002: DevTools: improve DevTools file watcher to send added and removed paths (Closed)
Patch Set: Created 4 years, 2 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 window.InspectorFrontendHostAPI = InspectorFrontendHostAPI; 10 window.InspectorFrontendHostAPI = InspectorFrontendHostAPI;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698