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

Unified Diff: components/autofill/content/renderer/autofill_agent.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 Evan's review. Created 5 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: components/autofill/content/renderer/autofill_agent.cc
diff --git a/components/autofill/content/renderer/autofill_agent.cc b/components/autofill/content/renderer/autofill_agent.cc
index b6686c3cb5eb678c7b96f121ea07cdef8f133984..cffccfb6d840c4214e3b1753a327f7df1878b81b 100644
--- a/components/autofill/content/renderer/autofill_agent.cc
+++ b/components/autofill/content/renderer/autofill_agent.cc
@@ -22,6 +22,7 @@
#include "components/autofill/core/common/autofill_constants.h"
#include "components/autofill/core/common/autofill_data_validation.h"
#include "components/autofill/core/common/autofill_switches.h"
+#include "components/autofill/core/common/autofill_util.h"
#include "components/autofill/core/common/form_data.h"
#include "components/autofill/core/common/form_data_predictions.h"
#include "components/autofill/core/common/form_field_data.h"
@@ -730,8 +731,14 @@ void AutofillAgent::PreviewFieldWithValue(const base::string16& value,
was_query_node_autofilled_ = element_.isAutofilled();
node->setSuggestedValue(value.substr(0, node->maxLength()));
node->setAutofilled(true);
- node->setSelectionRange(node->value().length(),
- node->suggestedValue().length());
+
+ if (IsFeatureSubstringMatchEnabled()) {
+ size_t start = autofill::GetTextSelectionStart(value, node->value());
please use gerrit instead 2015/06/11 19:10:25 You've calculated the |start| value previously, so
Pritam Nikam 2015/06/12 11:09:11 We do not recalculate |start| here, we do it only
please use gerrit instead 2015/06/22 00:32:59 Ah, I was slightly confused. I thought that you ca
Pritam Nikam 2015/06/22 18:31:39 Cases where ContainsTokenThatStartsWith() returned
+ node->setSelectionRange(start, node->suggestedValue().length());
+ } else {
+ node->setSelectionRange(node->value().length(),
+ node->suggestedValue().length());
+ }
}
void AutofillAgent::ProcessForms() {

Powered by Google App Engine
This is Rietveld 408576698