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

Unified Diff: components/autofill/content/browser/request_autocomplete_manager.cc

Issue 248333002: Remove AutocompleteResultErrorUnsupported, replace with AutocompleteResultErrorDisabled (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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/browser/request_autocomplete_manager.cc
diff --git a/components/autofill/content/browser/request_autocomplete_manager.cc b/components/autofill/content/browser/request_autocomplete_manager.cc
index 8cc0dc5c404457fb891e13e38d4fcb0dfc37ffbe..cf4712bf6fa2c97cf97bea24613b66ab38cbdacb 100644
--- a/components/autofill/content/browser/request_autocomplete_manager.cc
+++ b/components/autofill/content/browser/request_autocomplete_manager.cc
@@ -29,9 +29,6 @@ blink::WebFormElement::AutocompleteResult ToWebkitAutocompleteResult(
return blink::WebFormElement::AutocompleteResultErrorCancel;
case AutofillManagerDelegate::AutocompleteResultErrorInvalid:
return blink::WebFormElement::AutocompleteResultErrorInvalid;
- // TODO(estade): update this when Blink has the proper type.
- case AutofillManagerDelegate::AutocompleteResultErrorUnsupported:
- return blink::WebFormElement::AutocompleteResultErrorDisabled;
}
NOTREACHED();

Powered by Google App Engine
This is Rietveld 408576698