Searched refs:AutofillProfile (Results 1 - 25 of 74) sorted by relevance

123

/external/chromium_org/chrome/browser/ui/autofill/
H A Dmock_new_credit_card_bubble_controller.h13 class AutofillProfile;
23 scoped_ptr<AutofillProfile> billing_profile);
27 const AutofillProfile* billing_profile() const {
35 scoped_ptr<AutofillProfile> billing_profile_;
H A Dautofill_dialog_i18n_input.h18 class AutofillProfile;
44 bool AddressHasCompleteAndVerifiedData(const AutofillProfile& profile,
H A Dmock_new_credit_card_bubble_controller.cc20 scoped_ptr<AutofillProfile> billing_profile) {
H A Dnew_credit_card_bubble_controller.h24 class AutofillProfile;
67 scoped_ptr<AutofillProfile> billing_profile);
103 scoped_ptr<AutofillProfile> billing_profile);
120 scoped_ptr<AutofillProfile> billing_profile_;
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/
H A DPersonalDataManagerTest.java10 import org.chromium.chrome.browser.autofill.PersonalDataManager.AutofillProfile;
38 AutofillProfile profile = new AutofillProfile(
47 AutofillProfile profile2 = new AutofillProfile(
61 AutofillProfile storedProfile = mHelper.getProfile(profileOneGUID);
72 AutofillProfile profile = new AutofillProfile(
82 AutofillProfile storedProfile = mHelper.getProfile(profileOneGUID);
91 AutofillProfile storedProfile
[all...]
H A DAutofillTestHelper.java8 import org.chromium.chrome.browser.autofill.PersonalDataManager.AutofillProfile;
27 AutofillProfile getProfile(final String guid) throws ExecutionException {
28 return ThreadUtils.runOnUiThreadBlocking(new Callable<AutofillProfile>() {
30 public AutofillProfile call() {
36 List<AutofillProfile> getProfiles() throws ExecutionException {
37 return ThreadUtils.runOnUiThreadBlocking(new Callable<List<AutofillProfile> >() {
39 public List<AutofillProfile> call() {
54 String setProfile(final AutofillProfile profile) throws InterruptedException,
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_profile.h27 // A collection of FormGroups stored in a profile. AutofillProfile also
31 class AutofillProfile : public AutofillDataModel { class in namespace:autofill
33 AutofillProfile(const std::string& guid, const std::string& origin);
36 AutofillProfile();
37 AutofillProfile(const AutofillProfile& profile);
38 virtual ~AutofillProfile();
40 AutofillProfile& operator=(const AutofillProfile& profile);
89 int Compare(const AutofillProfile
[all...]
H A Dautofill_test_utils.h14 class AutofillProfile;
42 AutofillProfile GetFullProfile();
45 AutofillProfile GetFullProfile2();
48 AutofillProfile GetVerifiedProfile();
51 AutofillProfile GetVerifiedProfile2();
68 void SetProfileInfo(AutofillProfile* profile,
75 void SetProfileInfoWithGuid(AutofillProfile* profile,
H A Dtest_personal_data_manager.h23 void AddTestingProfile(AutofillProfile* profile);
29 virtual const std::vector<AutofillProfile*>& GetProfiles() const OVERRIDE;
30 virtual const std::vector<AutofillProfile*>& web_profiles() const OVERRIDE;
34 const AutofillProfile& imported_profile) OVERRIDE;
49 const AutofillProfile& imported_profile() { return imported_profile_; }
53 std::vector<AutofillProfile*> profiles_;
55 AutofillProfile imported_profile_;
H A Dtest_personal_data_manager.cc16 void TestPersonalDataManager::AddTestingProfile(AutofillProfile* profile) {
26 const std::vector<AutofillProfile*>& TestPersonalDataManager::GetProfiles()
31 const std::vector<AutofillProfile*>& TestPersonalDataManager::web_profiles()
42 const AutofillProfile& imported_profile) {
H A Dautofill_profile_unittest.cc28 base::string16 GetLabel(AutofillProfile* profile) {
29 std::vector<AutofillProfile*> profiles;
32 AutofillProfile::CreateDifferentiatingLabels(profiles, "en-US", &labels);
89 AutofillProfile profile0(base::GenerateGUID(), "https://www.example.com/");
96 AutofillProfile profile00(base::GenerateGUID(), "https://www.example.com/");
104 AutofillProfile profile1(base::GenerateGUID(), "https://www.example.com/");
112 AutofillProfile profile1a(base::GenerateGUID(), "https://www.example.com/");
120 AutofillProfile profile2(base::GenerateGUID(), "https://www.example.com/");
129 AutofillProfile profile3(base::GenerateGUID(), "https://www.example.com/");
137 AutofillProfile profile
[all...]
H A Daddress_i18n.h22 class AutofillProfile;
34 CreateAddressDataFromAutofillProfile(const AutofillProfile& profile,
H A Dpersonal_data_manager.h38 void SetProfiles(int, std::vector<autofill::AutofillProfile>*);
91 const AutofillProfile& imported_profile);
99 void AddProfile(const AutofillProfile& profile);
102 void UpdateProfile(const AutofillProfile& profile);
110 AutofillProfile* GetProfileByGUID(const std::string& guid);
135 virtual const std::vector<AutofillProfile*>& GetProfiles() const;
136 virtual const std::vector<AutofillProfile*>& web_profiles() const;
149 const base::Callback<bool(const AutofillProfile&)>& filter,
179 static bool IsValidLearnableProfile(const AutofillProfile& profile,
187 const AutofillProfile
[all...]
H A Dphone_number.h18 class AutofillProfile;
23 explicit PhoneNumber(AutofillProfile* profile);
29 void set_profile(AutofillProfile* profile) { profile_ = profile; }
65 bool ParseNumber(const AutofillProfile& profile,
91 const AutofillProfile* profile_; // WEAK
H A Dautofill_profile.cc126 const base::string16 MultiString(const AutofillProfile& p,
252 AutofillProfile::AutofillProfile(const std::string& guid, function in class:autofill::AutofillProfile
260 AutofillProfile::AutofillProfile() function in class:autofill::AutofillProfile
267 AutofillProfile::AutofillProfile(const AutofillProfile& profile) function in class:autofill::AutofillProfile
272 AutofillProfile::~AutofillProfile() {
[all...]
H A Dpersonal_data_manager.cc92 bool IsMinimumAddress(const AutofillProfile& profile,
236 scoped_ptr<AutofillProfile> imported_profile(new AutofillProfile);
376 void PersonalDataManager::AddProfile(const AutofillProfile& profile) {
384 if (FindByGUID<AutofillProfile>(web_profiles_, profile.guid()))
401 void PersonalDataManager::UpdateProfile(const AutofillProfile& profile) {
405 AutofillProfile* existing_profile = GetProfileByGUID(profile.guid());
428 AutofillProfile* PersonalDataManager::GetProfileByGUID(
430 const std::vector<AutofillProfile*>& profiles = GetProfiles();
431 std::vector<AutofillProfile*>
[all...]
H A Dautofill_test_utils.cc90 AutofillProfile GetFullProfile() {
91 AutofillProfile profile(base::GenerateGUID(), "http://www.example.com/");
107 AutofillProfile GetFullProfile2() {
108 AutofillProfile profile(base::GenerateGUID(), "https://www.example.com/");
124 AutofillProfile GetVerifiedProfile() {
125 AutofillProfile profile(GetFullProfile());
130 AutofillProfile GetVerifiedProfile2() {
131 AutofillProfile profile(GetFullProfile2());
162 void SetProfileInfo(AutofillProfile* profile,
182 void SetProfileInfoWithGuid(AutofillProfile* profil
[all...]
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_profile_syncable_service.h38 class AutofillProfile;
106 virtual bool LoadAutofillData(std::vector<AutofillProfile*>* profiles);
121 static syncer::SyncData CreateData(const AutofillProfile& profile);
133 typedef std::map<std::string, AutofillProfile*> GUIDToProfileMap;
139 AutofillProfile* profile,
143 static void WriteAutofillProfile(const AutofillProfile& profile,
148 void CreateGUIDToProfileMap(const std::vector<AutofillProfile*>& profiles,
170 AutofillProfile* autofill_profile);
175 AutofillProfile* autofill_profile);
182 static bool MergeProfile(const AutofillProfile
[all...]
H A Dautofill_change.h14 class AutofillProfile;
18 // Autofill++ types such as AutofillProfile and CreditCard simply use an int.
63 const AutofillProfile* profile);
66 const AutofillProfile* profile() const { return profile_; }
71 const AutofillProfile* profile_;
H A Dautofill_webdata.h27 class AutofillProfile;
63 virtual void AddAutofillProfile(const AutofillProfile& profile) = 0;
66 virtual void UpdateAutofillProfile(const AutofillProfile& profile) = 0;
H A Dautofill_profile_syncable_service_unittest.cc47 MOCK_METHOD1(LoadAutofillData, bool(std::vector<AutofillProfile*>*));
132 scoped_ptr<AutofillProfile> ConstructCompleteProfile() {
133 scoped_ptr<AutofillProfile> profile(
134 new AutofillProfile(kGuid1, kHttpsOrigin));
238 const std::vector<AutofillProfile*>& profiles_from_web_db,
275 std::vector<AutofillProfile*> profiles_from_web_db;
286 new AutofillProfile(guid_present1, origin_present1));
291 new AutofillProfile(guid_present2, origin_present2));
297 AutofillProfile profile1(guid_synced1, origin_synced1);
300 AutofillProfile profile
[all...]
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dautofill_helper.h20 class AutofillProfile;
68 std::vector<autofill::AutofillProfile>* autofill_profiles);
76 void AddProfile(int profile, const autofill::AutofillProfile& autofill_profile);
91 const std::vector<autofill::AutofillProfile*>& GetAllProfiles(
113 autofill::AutofillProfile CreateAutofillProfile(ProfileType type);
H A Dautofill_helper.cc30 using autofill::AutofillProfile;
133 AutofillProfile CreateAutofillProfile(ProfileType type) {
134 AutofillProfile profile;
281 void SetProfiles(int profile, std::vector<AutofillProfile>* autofill_profiles) {
303 void AddProfile(int profile, const AutofillProfile& autofill_profile) {
304 const std::vector<AutofillProfile*>& all_profiles = GetAllProfiles(profile);
305 std::vector<AutofillProfile> autofill_profiles;
313 const std::vector<AutofillProfile*>& all_profiles = GetAllProfiles(profile);
314 std::vector<AutofillProfile> autofill_profiles;
326 const std::vector<AutofillProfile*>
[all...]
/external/chromium_org/chrome/browser/sync/test/integration/performance/
H A Dautofill_sync_perf_test.cc18 using autofill::AutofillProfile;
58 const AutofillProfile NextAutofillProfile();
88 const std::vector<AutofillProfile*>& all_profiles =
90 std::vector<AutofillProfile> autofill_profiles;
101 const std::vector<AutofillProfile*>& all_profiles =
103 std::vector<AutofillProfile> autofill_profiles;
113 std::vector<AutofillProfile> empty;
125 const AutofillProfile AutofillSyncPerfTest::NextAutofillProfile() {
126 AutofillProfile profile;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/autofill/
H A DPersonalDataManager.java39 public static class AutofillProfile { class in class:PersonalDataManager
56 @CalledByNative("AutofillProfile")
57 public static AutofillProfile create(String guid, String origin,
62 return new AutofillProfile(guid, origin, fullName, companyName,
68 public AutofillProfile(String guid, String origin, String fullName, String companyName, method in class:PersonalDataManager.AutofillProfile
90 @CalledByNative("AutofillProfile")
95 @CalledByNative("AutofillProfile")
100 @CalledByNative("AutofillProfile")
105 @CalledByNative("AutofillProfile")
110 @CalledByNative("AutofillProfile")
[all...]

Completed in 2875 milliseconds

123