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

Unified Diff: chrome/renderer/autofill/form_cache.h

Issue 11415221: Add support for autofilling radio buttons and checkboxes. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fix the nit. 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/renderer/autofill/form_cache.h
diff --git a/chrome/renderer/autofill/form_cache.h b/chrome/renderer/autofill/form_cache.h
index 43bd651eb8c03d673f4414a27d9eb031c5c28f0c..29062247524d430c04ea92d1bd8fb62f6f9a2170 100644
--- a/chrome/renderer/autofill/form_cache.h
+++ b/chrome/renderer/autofill/form_cache.h
@@ -54,6 +54,9 @@ class FormCache {
// The cached initial values for <select> elements.
std::map<const WebKit::WebSelectElement, string16> initial_select_values_;
+ // The cached initial values for checkable <input> elements.
+ std::map<const WebKit::WebInputElement, bool> initial_checked_state_;
+
DISALLOW_COPY_AND_ASSIGN(FormCache);
};

Powered by Google App Engine
This is Rietveld 408576698