| 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..3d2d29a85f188066e4b4d6ce5c3c29398ff7b64a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/devtools.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/devtools.js
|
| @@ -194,9 +194,12 @@ DevToolsAPIImpl.prototype = {
|
| this._dispatchOnInspectorFrontendAPI("fileSystemAdded", ["", fileSystem]);
|
| },
|
|
|
| - fileSystemFilesChanged: function(path)
|
| + /**
|
| + * @param {!Array<string>} changedPaths
|
| + */
|
| + fileSystemFilesChanged: function(changedPaths)
|
| {
|
| - this._dispatchOnInspectorFrontendAPI("fileSystemFilesChanged", [path]);
|
| + this._dispatchOnInspectorFrontendAPI("fileSystemFilesChanged", [changedPaths]);
|
| },
|
|
|
| /**
|
|
|