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

Unified Diff: ui/file_manager/file_manager/foreground/js/search_controller.js

Issue 942193002: Files.app: fix some closure compilation issues to unblock new compiler roll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
Index: ui/file_manager/file_manager/foreground/js/search_controller.js
diff --git a/ui/file_manager/file_manager/foreground/js/search_controller.js b/ui/file_manager/file_manager/foreground/js/search_controller.js
index 8713797b2b5c56585ffdd66a1242dfd7548e0306..ae12d88956cc92ec544e1ad6e62b51d5fdf9e791 100644
--- a/ui/file_manager/file_manager/foreground/js/search_controller.js
+++ b/ui/file_manager/file_manager/foreground/js/search_controller.js
@@ -151,7 +151,7 @@ SearchController.prototype.requestAutocompleteSuggestions_ = function() {
// Discard results for previous requests and fire a new search
// for the most recent query.
if (searchString != this.lastAutocompleteQuery_) {
- this.requestAutocompleteSuggestions_(this.lastAutocompleteQuery_);
+ this.requestAutocompleteSuggestions_();
return;
}

Powered by Google App Engine
This is Rietveld 408576698