Index: components/autofill/browser/form_structure.h |
diff --git a/components/autofill/browser/form_structure.h b/components/autofill/browser/form_structure.h |
index 731fe5c1db3a1a9a6f9648c3ac8110bf0288c544..c86ed3566cf9e55efee2a312c3aa7a2327ebfbe5 100644 |
--- a/components/autofill/browser/form_structure.h |
+++ b/components/autofill/browser/form_structure.h |
@@ -136,7 +136,7 @@ class FormStructure { |
const AutofillField* field(size_t index) const; |
AutofillField* field(size_t index); |
size_t field_count() const; |
- size_t checkable_field_count() const; |
+ size_t active_field_count() const; |
Ilya Sherman
2013/03/18 22:33:46
Does this need to be a public method?
Raman Kakilate
2013/03/18 23:01:54
Moved to private.
|
// Returns the number of fields that are able to be autofilled. |
size_t autofill_count() const { return autofill_count_; } |
@@ -208,8 +208,9 @@ class FormStructure { |
// A vector of all the input fields in the form. |
ScopedVector<AutofillField> fields_; |
- // The number of fields able to be checked. |
- size_t checkable_field_count_; |
+ // The number of fields counted towards form signature and request to Autofill |
+ // server. |
+ size_t active_field_count_; |
// The names of the form input elements, that are part of the form signature. |
// The string starts with "&" and the names are also separated by the "&" |