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

Unified Diff: chrome/browser/autofill/form_structure.h

Issue 11539003: Pop up requestAutocomplete UI when autofill server hints chrome client that it is in a multipage au… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressed review comments. Created 7 years, 11 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: chrome/browser/autofill/form_structure.h
diff --git a/chrome/browser/autofill/form_structure.h b/chrome/browser/autofill/form_structure.h
index 45cf2bbcc365e51c6ed7d834dd741a4181d81d3c..5fffbd6274269e241408cd12f179c2603cd859b1 100644
--- a/chrome/browser/autofill/form_structure.h
+++ b/chrome/browser/autofill/form_structure.h
@@ -124,6 +124,10 @@ class FormStructure {
void ParseFieldTypesFromAutocompleteAttributes(bool* found_types,
bool* found_sections);
+ bool IsStartOfAutofillableFlow() const;
+
+ bool IsInAutofillableFlow() const;
+
const AutofillField* field(size_t index) const;
AutofillField* field(size_t index);
size_t field_count() const;
@@ -208,6 +212,14 @@ class FormStructure {
// GET or POST.
RequestMethod method_;
+ // Page number of the autofill flow, this form belongs to. If this form
+ // doesn't belong to any autofill flow, it is set to -1.
+ int page_number_;
Albert Bodenhamer 2013/01/14 22:10:18 current_page_number_ ?
Raman Kakilate 2013/01/14 23:37:46 Done.
+
+ // Total number of pages in the autofill flow. If this form doesn't belong
+ // to any autofill flow, it is set to -1.
+ int total_pages_;
+
// Whether the form includes any field types explicitly specified by the site
// author, via the |autocompletetype| attribute.
bool has_author_specified_types_;

Powered by Google App Engine
This is Rietveld 408576698