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

Unified Diff: third_party/WebKit/Source/devtools/front_end/devtools.js

Issue 2384343002: DevTools: improve DevTools file watcher to send added and removed paths (Closed)
Patch Set: go above and beyond 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/devtools.js
diff --git a/third_party/WebKit/Source/devtools/front_end/devtools.js b/third_party/WebKit/Source/devtools/front_end/devtools.js
index a56b6486b488e0d7f7db73a71e1a00d5af838bcd..3a9b7586ca1ad6ebdd05a8c786abaffd6d83b7fd 100644
--- a/third_party/WebKit/Source/devtools/front_end/devtools.js
+++ b/third_party/WebKit/Source/devtools/front_end/devtools.js
@@ -194,9 +194,14 @@ DevToolsAPIImpl.prototype = {
this._dispatchOnInspectorFrontendAPI("fileSystemAdded", ["", fileSystem]);
},
- fileSystemFilesChanged: function(path)
+ /**
+ * @param {!Array<string>} changedPaths
+ * @param {!Array<string>} addedPaths
+ * @param {!Array<string>} removedPaths
+ */
+ fileSystemFilesChanged: function(changedPaths, addedPaths, removedPaths)
{
- this._dispatchOnInspectorFrontendAPI("fileSystemFilesChanged", [path]);
+ this._dispatchOnInspectorFrontendAPI("fileSystemFilesChanged", [changedPaths.concat(addedPaths, removedPaths)]);
},
/**

Powered by Google App Engine
This is Rietveld 408576698