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

Unified Diff: chrome/browser/autocomplete/history_provider_util.cc

Issue 333273009: Don't call AutocompleteInput::Parse() on a background thread, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch for landing Created 6 years, 6 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: chrome/browser/autocomplete/history_provider_util.cc
diff --git a/chrome/browser/autocomplete/history_provider_util.cc b/chrome/browser/autocomplete/history_provider_util.cc
index 439248d6da234f68f3c75a9ee7a04b14f0f2cf93..d6452962acdbe840e44fa8a3cea9144916cebfe8 100644
--- a/chrome/browser/autocomplete/history_provider_util.cc
+++ b/chrome/browser/autocomplete/history_provider_util.cc
@@ -12,8 +12,7 @@ HistoryMatch::HistoryMatch()
: url_info(),
input_location(base::string16::npos),
match_in_scheme(false),
- innermost_match(true),
- promoted(false) {
+ innermost_match(true) {
}
HistoryMatch::HistoryMatch(const URLRow& url_info,
@@ -23,8 +22,7 @@ HistoryMatch::HistoryMatch(const URLRow& url_info,
: url_info(url_info),
input_location(input_location),
match_in_scheme(match_in_scheme),
- innermost_match(innermost_match),
- promoted(false) {
+ innermost_match(innermost_match) {
}
bool HistoryMatch::EqualsGURL(const HistoryMatch& h, const GURL& url) {
« no previous file with comments | « chrome/browser/autocomplete/history_provider_util.h ('k') | chrome/browser/autocomplete/history_url_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698