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

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

Issue 1859453002: components/autofill: scoped_ptr -> unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments addressed Created 4 years, 8 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/core/browser/email_field.h" 5 #include "components/autofill/core/browser/email_field.h"
6 6
7 #include "base/memory/ptr_util.h"
7 #include "base/strings/utf_string_conversions.h" 8 #include "base/strings/utf_string_conversions.h"
8 #include "components/autofill/core/browser/autofill_regex_constants.h" 9 #include "components/autofill/core/browser/autofill_regex_constants.h"
9 #include "components/autofill/core/browser/autofill_scanner.h" 10 #include "components/autofill/core/browser/autofill_scanner.h"
10 11
11 namespace autofill { 12 namespace autofill {
12 13
13 // static 14 // static
14 scoped_ptr<FormField> EmailField::Parse(AutofillScanner* scanner) { 15 std::unique_ptr<FormField> EmailField::Parse(AutofillScanner* scanner) {
15 AutofillField* field; 16 AutofillField* field;
16 if (ParseFieldSpecifics(scanner, base::UTF8ToUTF16(kEmailRe), 17 if (ParseFieldSpecifics(scanner, base::UTF8ToUTF16(kEmailRe),
17 MATCH_DEFAULT | MATCH_EMAIL, &field)) { 18 MATCH_DEFAULT | MATCH_EMAIL, &field)) {
18 return make_scoped_ptr(new EmailField(field)); 19 return base::WrapUnique(new EmailField(field));
19 } 20 }
20 21
21 return NULL; 22 return NULL;
22 } 23 }
23 24
24 EmailField::EmailField(const AutofillField* field) : field_(field) { 25 EmailField::EmailField(const AutofillField* field) : field_(field) {
25 } 26 }
26 27
27 void EmailField::AddClassifications( 28 void EmailField::AddClassifications(
28 FieldCandidatesMap* field_candidates) const { 29 FieldCandidatesMap* field_candidates) const {
29 AddClassification(field_, EMAIL_ADDRESS, kBaseEmailParserScore, 30 AddClassification(field_, EMAIL_ADDRESS, kBaseEmailParserScore,
30 field_candidates); 31 field_candidates);
31 } 32 }
32 33
33 } // namespace autofill 34 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/browser/email_field.h ('k') | components/autofill/core/browser/form_field.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698