| OLD | NEW |
| 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 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_PERSONAL_DATA_MANAGER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_PERSONAL_DATA_MANAGER_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_PERSONAL_DATA_MANAGER_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_PERSONAL_DATA_MANAGER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 FRIEND_TEST_ALL_PREFIXES( | 334 FRIEND_TEST_ALL_PREFIXES( |
| 335 PersonalDataManagerTest, | 335 PersonalDataManagerTest, |
| 336 ConvertWalletAddressesAndUpdateWalletCards_AlreadyConverted); | 336 ConvertWalletAddressesAndUpdateWalletCards_AlreadyConverted); |
| 337 FRIEND_TEST_ALL_PREFIXES( | 337 FRIEND_TEST_ALL_PREFIXES( |
| 338 PersonalDataManagerTest, | 338 PersonalDataManagerTest, |
| 339 ConvertWalletAddressesAndUpdateWalletCards_MultipleSimilarWalletAddresses)
; | 339 ConvertWalletAddressesAndUpdateWalletCards_MultipleSimilarWalletAddresses)
; |
| 340 friend class autofill::AutofillInteractiveTest; | 340 friend class autofill::AutofillInteractiveTest; |
| 341 friend class autofill::AutofillTest; | 341 friend class autofill::AutofillTest; |
| 342 friend class autofill::PersonalDataManagerFactory; | 342 friend class autofill::PersonalDataManagerFactory; |
| 343 friend class PersonalDataManagerTest; | 343 friend class PersonalDataManagerTest; |
| 344 friend class PersonalDataManagerTestBase; |
| 345 friend class SaveImportedProfileTest; |
| 344 friend class ProfileSyncServiceAutofillTest; | 346 friend class ProfileSyncServiceAutofillTest; |
| 345 friend class ::RemoveAutofillTester; | 347 friend class ::RemoveAutofillTester; |
| 346 friend std::default_delete<PersonalDataManager>; | 348 friend std::default_delete<PersonalDataManager>; |
| 347 friend void autofill_helper::SetProfiles( | 349 friend void autofill_helper::SetProfiles( |
| 348 int, std::vector<autofill::AutofillProfile>*); | 350 int, std::vector<autofill::AutofillProfile>*); |
| 349 friend void autofill_helper::SetCreditCards( | 351 friend void autofill_helper::SetCreditCards( |
| 350 int, std::vector<autofill::CreditCard>*); | 352 int, std::vector<autofill::CreditCard>*); |
| 351 friend void SetTestProfiles( | 353 friend void SetTestProfiles( |
| 352 Browser* browser, std::vector<AutofillProfile>* profiles); | 354 Browser* browser, std::vector<AutofillProfile>* profiles); |
| 353 | 355 |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 // validation rules. | 607 // validation rules. |
| 606 scoped_refptr<net::URLRequestContextGetter> context_getter_; | 608 scoped_refptr<net::URLRequestContextGetter> context_getter_; |
| 607 #endif | 609 #endif |
| 608 | 610 |
| 609 DISALLOW_COPY_AND_ASSIGN(PersonalDataManager); | 611 DISALLOW_COPY_AND_ASSIGN(PersonalDataManager); |
| 610 }; | 612 }; |
| 611 | 613 |
| 612 } // namespace autofill | 614 } // namespace autofill |
| 613 | 615 |
| 614 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_PERSONAL_DATA_MANAGER_H_ | 616 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_PERSONAL_DATA_MANAGER_H_ |
| OLD | NEW |