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

Unified Diff: chrome/browser/autofill/fax_field.cc

Issue 5985013: Autofill heuristics regular expressions should be localized (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/test/data/autofill_heuristics
Patch Set: Fix unit test. 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/fax_field.cc
diff --git a/chrome/browser/autofill/fax_field.cc b/chrome/browser/autofill/fax_field.cc
index 80e25cba001365e517725bcdd800f6f0bd534a49..8475730190defd2bb13d8d6a2b96a5114a31f065 100644
--- a/chrome/browser/autofill/fax_field.cc
+++ b/chrome/browser/autofill/fax_field.cc
@@ -4,18 +4,23 @@
#include "chrome/browser/autofill/fax_field.h"
+#include "app/l10n_util.h"
#include "base/logging.h"
#include "base/scoped_ptr.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/autofill/autofill_field.h"
+#include "grit/autofill_resources.h"
// static
FaxField* FaxField::Parse(std::vector<AutoFillField*>::const_iterator* iter) {
DCHECK(iter);
scoped_ptr<FaxField> fax_field(new FaxField);
- if (ParseText(iter, ASCIIToUTF16("fax"), &fax_field->number_))
+ if (ParseText(iter,
+ l10n_util::GetStringUTF16(IDS_AUTOFILL_FAX_RE),
+ &fax_field->number_)) {
return fax_field.release();
+ }
return NULL;
}
« no previous file with comments | « chrome/browser/autofill/autofill_resources.grd ('k') | chrome/test/data/autofill_heuristics/output/form_de.out » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698