Index: chrome/browser/autofill/autofill_xml_parser.h |
diff --git a/chrome/browser/autofill/autofill_xml_parser.h b/chrome/browser/autofill/autofill_xml_parser.h |
index da3d5bf661a3ebf33a33af49635ad6940cd55cdc..422b863878af19e781363fd79b96f44e0bd7e951 100644 |
--- a/chrome/browser/autofill/autofill_xml_parser.h |
+++ b/chrome/browser/autofill/autofill_xml_parser.h |
@@ -70,6 +70,10 @@ class AutofillQueryXmlParser : public AutofillXmlParser { |
UploadRequired* upload_required, |
std::string* experiment_id); |
+ int page_number() { return page_number_; } |
ahutter
2012/12/17 17:35:39
int page_number() const {...
Raman Kakilate
2013/01/10 00:54:40
Done.
|
+ |
+ int total_pages() { return total_pages_; } |
+ |
private: |
// A callback for the beginning of a new <element>, called by Expat. |
// |context| is a parsing context used to resolve element/attribute names. |
@@ -92,6 +96,12 @@ class AutofillQueryXmlParser : public AutofillXmlParser { |
// form is submitted. |
UploadRequired* upload_required_; |
+ // Page number of present page in multipage autofill flow. |
+ int page_number_; |
+ |
+ // Total number of pages in multipage autofill flow. |
+ int total_pages_; |
+ |
// The server experiment to which this query response belongs. |
// For the default server implementation, this is empty. |
std::string* experiment_id_; |