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

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

Issue 6033010: Support autocompletion for HTMl5 tags:"email", "month" and "tel". (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: unroll tests. Created 9 years, 11 months 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/credit_card.h
diff --git a/chrome/browser/autofill/credit_card.h b/chrome/browser/autofill/credit_card.h
index 2b2d089116f85ac4df65cc0bc02767ea7fabccc6..b792e51a761c543d8a936333bc1535c8382011da 100644
--- a/chrome/browser/autofill/credit_card.h
+++ b/chrome/browser/autofill/credit_card.h
@@ -73,6 +73,9 @@ class CreditCard : public FormGroup {
// Returns the credit card number.
const string16& number() const { return number_; }
+ // Special method to set value for HTML5 month input type.
+ void SetMonthInputInfo(const string16& value);
+
private:
// The month and year are zero if not present.
int Expiration4DigitYear() const { return expiration_year_; }

Powered by Google App Engine
This is Rietveld 408576698