| Index: chrome/browser/autofill/autofill_server_field_info.h
|
| diff --git a/chrome/browser/autofill/autofill_server_field_info.h b/chrome/browser/autofill/autofill_server_field_info.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e80ac125a7f21ce0a7f74595c35497d1046fb885
|
| --- /dev/null
|
| +++ b/chrome/browser/autofill/autofill_server_field_info.h
|
| @@ -0,0 +1,21 @@
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_SERVER_FIELD_INFO_H_
|
| +#define CHROME_BROWSER_AUTOFILL_AUTOFILL_SERVER_FIELD_INFO_H_
|
| +
|
| +#include <string>
|
| +
|
| +#include "base/basictypes.h"
|
| +#include "base/string16.h"
|
| +#include "chrome/browser/autofill/field_types.h"
|
| +
|
| +struct AutofillServerFieldInfo {
|
| + // Autofill Field Type.
|
| + AutofillFieldType field_type;
|
| + // Default value for the field
|
| + std::string default_value;
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_SERVER_FIELD_INFO_H_
|
|
|