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

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

Issue 1422463007: DevTools: use inotify to pick changes on the filesystem. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: build fix Created 5 years, 1 month 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 24 matching lines...) Expand all
35 DeviceCountUpdated: "deviceCountUpdated", 35 DeviceCountUpdated: "deviceCountUpdated",
36 DevicesDiscoveryConfigChanged: "devicesDiscoveryConfigChanged", 36 DevicesDiscoveryConfigChanged: "devicesDiscoveryConfigChanged",
37 DevicesUpdated: "devicesUpdated", 37 DevicesUpdated: "devicesUpdated",
38 DispatchMessage: "dispatchMessage", 38 DispatchMessage: "dispatchMessage",
39 DispatchMessageChunk: "dispatchMessageChunk", 39 DispatchMessageChunk: "dispatchMessageChunk",
40 DispatchFrontendAPIMessage: "dispatchFrontendAPIMessage", 40 DispatchFrontendAPIMessage: "dispatchFrontendAPIMessage",
41 EnterInspectElementMode: "enterInspectElementMode", 41 EnterInspectElementMode: "enterInspectElementMode",
42 FileSystemsLoaded: "fileSystemsLoaded", 42 FileSystemsLoaded: "fileSystemsLoaded",
43 FileSystemRemoved: "fileSystemRemoved", 43 FileSystemRemoved: "fileSystemRemoved",
44 FileSystemAdded: "fileSystemAdded", 44 FileSystemAdded: "fileSystemAdded",
45 FileSystemFilesChanged: "fileSystemFilesChanged",
45 FrontendAPIAttached: "frontendAPIAttached", 46 FrontendAPIAttached: "frontendAPIAttached",
46 FrontendAPIDetached: "frontendAPIDetached", 47 FrontendAPIDetached: "frontendAPIDetached",
47 IndexingTotalWorkCalculated: "indexingTotalWorkCalculated", 48 IndexingTotalWorkCalculated: "indexingTotalWorkCalculated",
48 IndexingWorked: "indexingWorked", 49 IndexingWorked: "indexingWorked",
49 IndexingDone: "indexingDone", 50 IndexingDone: "indexingDone",
50 KeyEventUnhandled: "keyEventUnhandled", 51 KeyEventUnhandled: "keyEventUnhandled",
51 ReloadInspectedPage: "reloadInspectedPage", 52 ReloadInspectedPage: "reloadInspectedPage",
52 RevealSourceLine: "revealSourceLine", 53 RevealSourceLine: "revealSourceLine",
53 SavedURL: "savedURL", 54 SavedURL: "savedURL",
54 SearchCompleted: "searchCompleted", 55 SearchCompleted: "searchCompleted",
(...skipping 11 matching lines...) Expand all
66 [InspectorFrontendHostAPI.Events.DeviceCountUpdated, ["count"]], 67 [InspectorFrontendHostAPI.Events.DeviceCountUpdated, ["count"]],
67 [InspectorFrontendHostAPI.Events.DevicesDiscoveryConfigChanged, ["discoverUs bDevices", "portForwardingEnabled", "portForwardingConfig"]], 68 [InspectorFrontendHostAPI.Events.DevicesDiscoveryConfigChanged, ["discoverUs bDevices", "portForwardingEnabled", "portForwardingConfig"]],
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.DispatchFrontendAPIMessage, ["messageObject "]], 72 [InspectorFrontendHostAPI.Events.DispatchFrontendAPIMessage, ["messageObject "]],
72 [InspectorFrontendHostAPI.Events.EnterInspectElementMode, []], 73 [InspectorFrontendHostAPI.Events.EnterInspectElementMode, []],
73 [InspectorFrontendHostAPI.Events.FileSystemsLoaded, ["fileSystems"]], 74 [InspectorFrontendHostAPI.Events.FileSystemsLoaded, ["fileSystems"]],
74 [InspectorFrontendHostAPI.Events.FileSystemRemoved, ["fileSystemPath"]], 75 [InspectorFrontendHostAPI.Events.FileSystemRemoved, ["fileSystemPath"]],
75 [InspectorFrontendHostAPI.Events.FileSystemAdded, ["errorMessage", "fileSyst em"]], 76 [InspectorFrontendHostAPI.Events.FileSystemAdded, ["errorMessage", "fileSyst em"]],
77 [InspectorFrontendHostAPI.Events.FileSystemFilesChanged, ["paths"]],
76 [InspectorFrontendHostAPI.Events.FrontendAPIAttached, ["frontendAPIAttached" ]], 78 [InspectorFrontendHostAPI.Events.FrontendAPIAttached, ["frontendAPIAttached" ]],
77 [InspectorFrontendHostAPI.Events.FrontendAPIDetached, ["frontendAPIDetached" ]], 79 [InspectorFrontendHostAPI.Events.FrontendAPIDetached, ["frontendAPIDetached" ]],
78 [InspectorFrontendHostAPI.Events.IndexingTotalWorkCalculated, ["requestId", "fileSystemPath", "totalWork"]], 80 [InspectorFrontendHostAPI.Events.IndexingTotalWorkCalculated, ["requestId", "fileSystemPath", "totalWork"]],
79 [InspectorFrontendHostAPI.Events.IndexingWorked, ["requestId", "fileSystemPa th", "worked"]], 81 [InspectorFrontendHostAPI.Events.IndexingWorked, ["requestId", "fileSystemPa th", "worked"]],
80 [InspectorFrontendHostAPI.Events.IndexingDone, ["requestId", "fileSystemPath "]], 82 [InspectorFrontendHostAPI.Events.IndexingDone, ["requestId", "fileSystemPath "]],
81 [InspectorFrontendHostAPI.Events.KeyEventUnhandled, ["event"]], 83 [InspectorFrontendHostAPI.Events.KeyEventUnhandled, ["event"]],
82 [InspectorFrontendHostAPI.Events.ReloadInspectedPage, ["hard"]], 84 [InspectorFrontendHostAPI.Events.ReloadInspectedPage, ["hard"]],
83 [InspectorFrontendHostAPI.Events.RevealSourceLine, ["url", "lineNumber", "co lumnNumber"]], 85 [InspectorFrontendHostAPI.Events.RevealSourceLine, ["url", "lineNumber", "co lumnNumber"]],
84 [InspectorFrontendHostAPI.Events.SavedURL, ["url"]], 86 [InspectorFrontendHostAPI.Events.SavedURL, ["url"]],
85 [InspectorFrontendHostAPI.Events.SearchCompleted, ["requestId", "fileSystemP ath", "files"]], 87 [InspectorFrontendHostAPI.Events.SearchCompleted, ["requestId", "fileSystemP ath", "files"]],
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 /** 287 /**
286 * @return {boolean} 288 * @return {boolean}
287 */ 289 */
288 isHostedMode: function() { }, 290 isHostedMode: function() { },
289 291
290 /** 292 /**
291 * @param {string} message 293 * @param {string} message
292 */ 294 */
293 sendFrontendAPINotification: function(message) { } 295 sendFrontendAPINotification: function(message) { }
294 } 296 }
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