Chromium Code Reviews| 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" |
|
Ilya Sherman
2012/12/07 01:47:22
nit: It doesn't look like either of these headers
Raman Kakilate
2012/12/10 18:36:45
Done.
|
| +#include "chrome/browser/autofill/field_types.h" |
| + |
| +struct AutofillServerFieldInfo { |
| + // Autofill Field Type. |
|
Ilya Sherman
2012/12/07 01:47:22
nit: This comment is just repeating the type name.
Raman Kakilate
2012/12/10 18:36:45
Done.
|
| + AutofillFieldType field_type; |
| + // Default value for the field |
|
Ilya Sherman
2012/12/07 01:47:22
nit: Please mention that the default value only ap
Raman Kakilate
2012/12/10 18:36:45
Done.
|
| + std::string default_value; |
| +}; |
| + |
| +#endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_SERVER_FIELD_INFO_H_ |