Index: components/history/core/browser/url_database.cc |
diff --git a/components/history/core/browser/url_database.cc b/components/history/core/browser/url_database.cc |
index 35307074cd7eeff399ea8d9627835aacef1f40fd..b19453f62a722e457b03fcd32d082fc40d6fdc3d 100644 |
--- a/components/history/core/browser/url_database.cc |
+++ b/components/history/core/browser/url_database.cc |
@@ -357,7 +357,8 @@ bool URLDatabase::FindShortestURLFromBase(const std::string& base, |
bool URLDatabase::GetTextMatches(const base::string16& query, |
URLRows* results) { |
ScopedVector<query_parser::QueryNode> query_nodes; |
- query_parser_.ParseQueryNodes(query, &query_nodes.get()); |
+ query_parser_.ParseQueryNodes( |
+ query, false /* always_prefix_search */, &query_nodes.get()); |
results->clear(); |
sql::Statement statement(GetDB().GetCachedStatement(SQL_FROM_HERE, |