Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4568)

Unified Diff: chrome/browser/autofill/autofill_server_field_info.h

Issue 11415221: Add support for autofilling radio buttons and checkboxes. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: address comments Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698