summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill/field_types.h
diff options
context:
space:
mode:
authorramankk@chromium.org <ramankk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-22 17:04:45 +0000
committerramankk@chromium.org <ramankk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-22 17:04:45 +0000
commit732acb0587f86bd09af7d73613b063b4ad106eda (patch)
tree86584d9dda73c490c63b115409eb700a03785f26 /chrome/browser/autofill/field_types.h
parentb6bf5527e45e0ba364284235e7e851b4436de0ed (diff)
downloadchromium_src-732acb0587f86bd09af7d73613b063b4ad106eda.zip
chromium_src-732acb0587f86bd09af7d73613b063b4ad106eda.tar.gz
chromium_src-732acb0587f86bd09af7d73613b063b4ad106eda.tar.bz2
Browser changes for supporting checkable elements
This change is part of r176189, which was rolledback. Regression was finally identified to have been caused by renderer changes (parts of which are committed, and the regressing parts have been commented out), this CL only has browser side changes. When I have solution to stop regressing my renderer side changes, will submit it along with test data changes. BUG=157636 Review URL: https://chromiumcodereview.appspot.com/12018004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178022 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/field_types.h')
-rw-r--r--chrome/browser/autofill/field_types.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/browser/autofill/field_types.h b/chrome/browser/autofill/field_types.h
index 832b94a..d45f1aa 100644
--- a/chrome/browser/autofill/field_types.h
+++ b/chrome/browser/autofill/field_types.h
@@ -6,6 +6,7 @@
#define CHROME_BROWSER_AUTOFILL_FIELD_TYPES_H_
#include <set>
+#include <string>
// NOTE: This list MUST not be modified. The server aggregates and stores these
// types over several versions, so we must remain fully compatible with the
@@ -77,9 +78,12 @@ enum AutofillFieldType {
COMPANY_NAME = 60,
+ // Generic type whose default value is known.
+ FIELD_WITH_DEFAULT_VALUE = 61,
+
// No new types can be added.
- MAX_VALID_FIELD_TYPE = 61,
+ MAX_VALID_FIELD_TYPE = 62,
};
typedef std::set<AutofillFieldType> FieldTypeSet;