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

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: Incorporated Vaclav's review comments. Created 5 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: components/autofill/core/browser/suggestion.cc
diff --git a/components/autofill/core/browser/suggestion.cc b/components/autofill/core/browser/suggestion.cc
index c46d30271c9a8bbc1cba9e1f5ebb42a5387158b0..c5b150eb7673a508f13dcd137872764bf48d19e3 100644
--- a/components/autofill/core/browser/suggestion.cc
+++ b/components/autofill/core/browser/suggestion.cc
@@ -11,7 +11,8 @@
namespace autofill {
Suggestion::Suggestion()
- : frontend_id(0) {
+ : frontend_id(0),
+ match(PREFIX_MATCH) {
}
Suggestion::Suggestion(const Suggestion& other)
@@ -19,12 +20,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,
@@ -34,7 +37,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() {
« no previous file with comments | « components/autofill/core/browser/suggestion.h ('k') | components/autofill/core/browser/webdata/autofill_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698