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

Unified Diff: components/autofill/core/browser/suggestion.cc

Issue 962673004: [Autofill/Autocomplete Feature] Substring matching instead of prefix matching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addresses Vaclav's & Evan's Inputs. Created 5 years, 9 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: components/autofill/core/browser/suggestion.cc
diff --git a/components/autofill/core/browser/suggestion.cc b/components/autofill/core/browser/suggestion.cc
index d906207eb9cd47b104e346b5cb69ccdf83e246b2..caa47b27b5ae9134dc2ab23e5f59a07bfab3799c 100644
--- a/components/autofill/core/browser/suggestion.cc
+++ b/components/autofill/core/browser/suggestion.cc
@@ -29,7 +29,8 @@ bool SuggestionBackendID::operator<(const SuggestionBackendID& other) const {
}
Suggestion::Suggestion()
- : frontend_id(0) {
+ : frontend_id(0),
+ match(PREFIX_MATCH) {
}
Suggestion::Suggestion(const Suggestion& other)
@@ -37,12 +38,14 @@ Suggestion::Suggestion(const Suggestion& other)
frontend_id(other.frontend_id),
value(other.value),
label(other.label),
- icon(other.icon) {
+ icon(other.icon),
+ match(other.match) {
}
Suggestion::Suggestion(const base::string16& v)
: frontend_id(0),
- value(v) {
+ value(v),
+ match(PREFIX_MATCH) {
}
Suggestion::Suggestion(const std::string& v,
@@ -52,7 +55,8 @@ Suggestion::Suggestion(const std::string& v,
: frontend_id(fid),
value(base::UTF8ToUTF16(v)),
label(base::UTF8ToUTF16(l)),
- icon(base::UTF8ToUTF16(i)) {
+ icon(base::UTF8ToUTF16(i)),
+ match(PREFIX_MATCH) {
}
Suggestion::~Suggestion() {

Powered by Google App Engine
This is Rietveld 408576698