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

Side by Side Diff: components/autofill/core/browser/email_field.cc

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/autofill/browser/email_field.h" 5 #include "components/autofill/core/browser/email_field.h"
6 6
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "components/autofill/browser/autofill_regex_constants.h" 8 #include "components/autofill/core/browser/autofill_regex_constants.h"
9 #include "components/autofill/browser/autofill_scanner.h" 9 #include "components/autofill/core/browser/autofill_scanner.h"
10 #include "ui/base/l10n/l10n_util.h" 10 #include "ui/base/l10n/l10n_util.h"
11 11
12 namespace autofill { 12 namespace autofill {
13 13
14 // static 14 // static
15 FormField* EmailField::Parse(AutofillScanner* scanner) { 15 FormField* EmailField::Parse(AutofillScanner* scanner) {
16 const AutofillField* field; 16 const AutofillField* field;
17 if (ParseFieldSpecifics(scanner, UTF8ToUTF16(autofill::kEmailRe), 17 if (ParseFieldSpecifics(scanner, UTF8ToUTF16(autofill::kEmailRe),
18 MATCH_DEFAULT | MATCH_EMAIL, &field)) { 18 MATCH_DEFAULT | MATCH_EMAIL, &field)) {
19 return new EmailField(field); 19 return new EmailField(field);
20 } 20 }
21 21
22 return NULL; 22 return NULL;
23 } 23 }
24 24
25 EmailField::EmailField(const AutofillField* field) : field_(field) { 25 EmailField::EmailField(const AutofillField* field) : field_(field) {
26 } 26 }
27 27
28 bool EmailField::ClassifyField(FieldTypeMap* map) const { 28 bool EmailField::ClassifyField(FieldTypeMap* map) const {
29 return AddClassification(field_, EMAIL_ADDRESS, map); 29 return AddClassification(field_, EMAIL_ADDRESS, map);
30 } 30 }
31 31
32 } // namespace autofill 32 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/browser/email_field.h ('k') | components/autofill/core/browser/field_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698