blob: 7162c901a5884ce83f47c4dfef79716126e46a8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright 2013 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.
#include "components/autofill/core/browser/email_field.h"
#include "base/strings/utf_string_conversions.h"
#include "components/autofill/core/browser/autofill_regex_constants.h"
#include "components/autofill/core/browser/autofill_scanner.h"
#include "ui/base/l10n/l10n_util.h"
namespace autofill {
// static
FormField* EmailField::Parse(AutofillScanner* scanner) {
const AutofillField* field;
if (ParseFieldSpecifics(scanner, UTF8ToUTF16(autofill::kEmailRe),
MATCH_DEFAULT | MATCH_EMAIL, &field)) {
return new EmailField(field);
}
return NULL;
}
EmailField::EmailField(const AutofillField* field) : field_(field) {
}
bool EmailField::ClassifyField(FieldTypeMap* map) const {
return AddClassification(field_, EMAIL_ADDRESS, map);
}
} // namespace autofill
|