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

Unified Diff: ui/app_list/search/history.cc

Issue 2165483002: Fill the launcher with all found apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed. Created 4 years, 5 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/app_list/search/history.cc
diff --git a/ui/app_list/search/history.cc b/ui/app_list/search/history.cc
index 7277ad38520e20083db9c6952e2f87c8cc8b56bc..1fcbc03a20c871c1aeab4acf4b6e7bdd980833ca 100644
--- a/ui/app_list/search/history.cc
+++ b/ui/app_list/search/history.cc
@@ -28,7 +28,7 @@ std::string NormalizeString(const std::string& utf8) {
History::History(scoped_refptr<HistoryDataStore> store)
: store_(store), data_loaded_(false) {
const size_t kMaxQueryEntries = 1000;
- const size_t kMaxSecondaryQueries = 5;
+ const size_t kMaxSecondaryQueries = 8;
mtomasz 2016/07/19 07:07:56 (Not sure if this change is necessary.)
Matt Giuca 2016/07/19 07:29:10 I don't know what this is and I don't think it's r
xiyuan 2016/07/19 15:22:55 Matt is right that this is not relevant to what th
mtomasz 2016/07/20 00:46:48 Removed. Done.
data_.reset(
new HistoryData(store_.get(), kMaxQueryEntries, kMaxSecondaryQueries));

Powered by Google App Engine
This is Rietveld 408576698