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

Unified Diff: Source/devtools/front_end/FileSystemProjectDelegate.js

Issue 166703003: DevTools: Simplify mergeOrIntersect (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added a test. Fixed findFilesMatchingSearchRequest Created 6 years, 10 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
« no previous file with comments | « LayoutTests/inspector/utilities-expected.txt ('k') | Source/devtools/front_end/utilities.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/FileSystemProjectDelegate.js
diff --git a/Source/devtools/front_end/FileSystemProjectDelegate.js b/Source/devtools/front_end/FileSystemProjectDelegate.js
index e285adbb080c4dfa8e7de3fcaa06200ddd21c387..01e9f4af4e95ae93280735b3ac48cbd12d49a94f 100644
--- a/Source/devtools/front_end/FileSystemProjectDelegate.js
+++ b/Source/devtools/front_end/FileSystemProjectDelegate.js
@@ -223,7 +223,7 @@ WebInspector.FileSystemProjectDelegate.prototype = {
*/
findFilesMatchingSearchRequest: function(queries, fileQueries, caseSensitive, isRegex, progress, callback)
{
- var result = [];
+ var result = null;
var queriesToRun = queries.slice();
if (!queriesToRun.length)
queriesToRun.push("");
@@ -531,7 +531,7 @@ WebInspector.FileSystemProjectDelegate.prototype = {
{
this.dispatchEventToListeners(WebInspector.ProjectDelegate.Events.Reset, null);
},
-
+
__proto__: WebInspector.Object.prototype
}
« no previous file with comments | « LayoutTests/inspector/utilities-expected.txt ('k') | Source/devtools/front_end/utilities.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698