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..f038152ac5ab9dc847f754d90ecc5f2fb1a94abe 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 0. |
ahutter
2012/12/17 17:35:39
Should probably be -1 for clarity.
Raman Kakilate
2013/01/10 00:54:40
Done.
|
+ int page_number_; |
+ |
+ // Total number of pages in the autofill flow. If this form doesn't belong |
+ // to any autofill flow, it is set to 0. |
+ 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_; |