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

Unified Diff: chrome/renderer/autofill/autofill_agent.cc

Issue 10307004: Support datalist UI for <input type=email multiple> (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix indentation and include Created 8 years, 7 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
« no previous file with comments | « chrome/renderer/autofill/autofill_agent.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/autofill/autofill_agent.cc
diff --git a/chrome/renderer/autofill/autofill_agent.cc b/chrome/renderer/autofill/autofill_agent.cc
index 73baa1f81f024d11d04684b8c84081f43594cf48..28bb68aed97e33a13e0ba57ce1669291c9aced1d 100644
--- a/chrome/renderer/autofill/autofill_agent.cc
+++ b/chrome/renderer/autofill/autofill_agent.cc
@@ -7,6 +7,8 @@
#include "base/bind.h"
#include "base/message_loop.h"
#include "base/time.h"
+#include "base/string_util.h"
+#include "base/string_split.h"
#include "base/utf_string_conversions.h"
#include "chrome/common/autofill_messages.h"
#include "chrome/common/chrome_constants.h"
@@ -59,9 +61,17 @@ void AppendDataListSuggestions(const WebKit::WebInputElement& element,
if (options.isNull())
return;
+ string16 prefix = element.editingValue();
+ if (element.isMultiple() &&
+ element.formControlType() == WebString::fromUTF8("email")) {
+ std::vector<string16> parts;
+ base::SplitStringDontTrim(prefix, ',', &parts);
+ if (parts.size() > 0)
+ TrimWhitespace(parts[parts.size() - 1], TRIM_LEADING, &prefix);
+ }
for (WebOptionElement option = options.firstItem().to<WebOptionElement>();
- !option.isNull(); option = options.nextItem().to<WebOptionElement>()) {
- if (!StartsWith(option.value(), element.value(), false))
+ !option.isNull(); option = options.nextItem().to<WebOptionElement>()) {
+ if (!StartsWith(option.value(), prefix, false))
continue;
values->push_back(option.value());
@@ -209,11 +219,37 @@ void AutofillAgent::didAcceptAutofillSuggestion(const WebNode& node,
break;
case WebAutofillClient::MenuItemIDAutocompleteEntry:
case WebAutofillClient::MenuItemIDPasswordEntry:
- case WebAutofillClient::MenuItemIDDataListEntry:
- // User selected an Autocomplete or password or datalist entry, so we
- // fill directly.
+ // User selected an Autocomplete or password entry, so we fill directly.
SetNodeText(value, &element_);
break;
+ case WebAutofillClient::MenuItemIDDataListEntry: {
+ string16 new_value = value;
+ // If this element takes multiple values then replace the last part with
+ // the suggestion.
+ if (element_.isMultiple() &&
+ element_.formControlType() == WebString::fromUTF8("email")) {
+ std::vector<string16> parts;
+
+ base::SplitStringDontTrim(element_.editingValue(), ',', &parts);
+ if (parts.size() == 0)
+ parts.push_back(string16());
+
+ string16 last_part = parts.back();
+ // We want to keep just the leading whitespace.
+ for (size_t i = 0; i < last_part.size(); ++i) {
+ if (!IsWhitespace(last_part[i])) {
+ last_part = last_part.substr(0, i);
+ break;
+ }
+ }
+ last_part.append(value);
+ parts[parts.size() - 1] = last_part;
+
+ new_value = JoinString(parts, ',');
+ }
+ SetNodeText(new_value, &element_);
+ break;
+ }
default:
// A positive item_id is a unique id for an autofill (vs. autocomplete)
// suggestion.
@@ -413,7 +449,7 @@ void AutofillAgent::CombineDataListEntriesAndShow(
if (v.empty()) {
// No suggestions, any popup currently showing is obsolete.
- web_view->hidePopups();
+ HidePopups();
return;
}
@@ -502,16 +538,14 @@ void AutofillAgent::ShowSuggestions(const WebInputElement& element,
// Don't attempt to autofill with values that are too large or if filling
// criteria are not met.
- WebString value = element.value();
+ WebString value = element.editingValue();
if (value.length() > kMaximumTextSizeForAutofill ||
(!autofill_on_empty_values && value.isEmpty()) ||
(requires_caret_at_end &&
(element.selectionStart() != element.selectionEnd() ||
element.selectionEnd() != static_cast<int>(value.length())))) {
// Any popup currently showing is obsolete.
- WebKit::WebView* web_view = render_view()->GetWebView();
- if (web_view)
- web_view->hidePopups();
+ HidePopups();
return;
}
@@ -586,7 +620,23 @@ void AutofillAgent::SetNodeText(const string16& value,
string16 substring = value;
substring = substring.substr(0, node->maxLength());
- node->setValue(substring, true);
+ WebKit::WebView* web_view = render_view()->GetWebView();
+ if (!web_view || !web_view->focusedFrame())
+ return;
Ilya Sherman 2012/05/09 02:38:58 nit: This is no longer used...
+
+ node.document().frame().executeCommand(WebString::fromUTF8("selectAll"));
+ node.document().frame().executeCommand(WebString::fromUTF8("InsertText"),
+ substring);
+ weak_ptr_factory_.InvalidateWeakPtrs();
+ MessageLoop::current()->PostTask(FROM_HERE,
+ base::Bind(&AutofillAgent::HidePopups,
+ weak_ptr_factory_.GetWeakPtr()));
+}
+
+void AutofillAgent::HidePopups() {
+ WebKit::WebView* web_view = render_view()->GetWebView();
+ if (web_view)
+ web_view->hidePopups();
}
} // namespace autofill
« no previous file with comments | « chrome/renderer/autofill/autofill_agent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698