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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_view_delegate.h

Issue 63053003: Ask libaddressinput for address components to use in requestAutocomplete(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: let's try this again, android Created 7 years, 1 month 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: chrome/browser/ui/autofill/autofill_dialog_view_delegate.h
diff --git a/chrome/browser/ui/autofill/autofill_dialog_view_delegate.h b/chrome/browser/ui/autofill/autofill_dialog_view_delegate.h
index 1f035a999a1b76914e74e125d010d5802cc95f58..a43990bbadebf6ec3238ed2f0e8012ec0eaf0ea6 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_view_delegate.h
+++ b/chrome/browser/ui/autofill/autofill_dialog_view_delegate.h
@@ -146,7 +146,6 @@ class AutofillDialogViewDelegate {
ServerFieldType type,
const string16& value) = 0;
-
// Decides whether the combination of all |inputs| is valid, returns a
// map of field types to validity messages.
virtual ValidityMessages InputsAreValid(DialogSection section,
@@ -167,6 +166,11 @@ class AutofillDialogViewDelegate {
virtual bool HandleKeyPressEventInInput(
const content::NativeWebKeyboardEvent& event) = 0;
+ // Called when a user selects an item in a combobox.
+ virtual void ComboboxItemSelected(ui::ComboboxModel* model,
+ DialogSection section,
+ int index) = 0;
+
// Called when focus has changed position within the view.
virtual void FocusMoved() = 0;

Powered by Google App Engine
This is Rietveld 408576698