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

Side by Side Diff: chrome/browser/autofill/autofill_common_test.cc

Issue 7576001: Refactor webkit_glue::FormField to remove hacky methods (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix copyright header Created 9 years, 4 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 "chrome/browser/autofill/autofill_common_test.h" 5 #include "chrome/browser/autofill/autofill_common_test.h"
6 6
7 #include "base/utf_string_conversions.h" 7 #include "base/utf_string_conversions.h"
8 #include "chrome/browser/autofill/autofill_profile.h" 8 #include "chrome/browser/autofill/autofill_profile.h"
9 #include "chrome/browser/autofill/credit_card.h" 9 #include "chrome/browser/autofill/credit_card.h"
10 #include "chrome/browser/password_manager/encryptor.h" 10 #include "chrome/browser/password_manager/encryptor.h"
11 #include "chrome/browser/prefs/pref_service.h" 11 #include "chrome/browser/prefs/pref_service.h"
12 #include "chrome/browser/profiles/profile.h" 12 #include "chrome/browser/profiles/profile.h"
13 #include "chrome/common/pref_names.h" 13 #include "chrome/common/pref_names.h"
14 #include "webkit/glue/form_field.h" 14 #include "webkit/glue/form_field.h"
15 15
16 namespace autofill_test { 16 namespace autofill_test {
17 17
18 void CreateTestFormField(const char* label, 18 void CreateTestFormField(const char* label,
19 const char* name, 19 const char* name,
20 const char* value, 20 const char* value,
21 const char* type, 21 const char* type,
22 webkit_glue::FormField* field) { 22 webkit_glue::FormField* field) {
23 *field = webkit_glue::FormField(ASCIIToUTF16(label), ASCIIToUTF16(name), 23 field->label = ASCIIToUTF16(label);
24 ASCIIToUTF16(value), ASCIIToUTF16(type), 0, 24 field->name = ASCIIToUTF16(name);
25 false); 25 field->value = ASCIIToUTF16(value);
26 field->form_control_type = ASCIIToUTF16(type);
26 } 27 }
27 28
28 inline void check_and_set( 29 inline void check_and_set(
29 FormGroup* profile, AutofillFieldType type, const char* value) { 30 FormGroup* profile, AutofillFieldType type, const char* value) {
30 if (value) 31 if (value)
31 profile->SetInfo(type, UTF8ToUTF16(value)); 32 profile->SetInfo(type, UTF8ToUTF16(value));
32 } 33 }
33 34
34 void SetProfileInfo(AutofillProfile* profile, 35 void SetProfileInfo(AutofillProfile* profile,
35 const char* first_name, const char* middle_name, 36 const char* first_name, const char* middle_name,
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 83
83 // Disable auxiliary profiles for unit testing. These reach out to system 84 // Disable auxiliary profiles for unit testing. These reach out to system
84 // services on the Mac. 85 // services on the Mac.
85 if (profile) { 86 if (profile) {
86 profile->GetPrefs()->SetBoolean(prefs::kAutofillAuxiliaryProfilesEnabled, 87 profile->GetPrefs()->SetBoolean(prefs::kAutofillAuxiliaryProfilesEnabled,
87 false); 88 false);
88 } 89 }
89 } 90 }
90 91
91 } // namespace autofill_test 92 } // namespace autofill_test
OLDNEW
« no previous file with comments | « chrome/browser/autofill/address_field_unittest.cc ('k') | chrome/browser/autofill/autofill_download_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698