| 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_AUTOFILL_MANAGER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, | 567 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, |
| 568 QualityMetrics_BasedOnAutocomplete); | 568 QualityMetrics_BasedOnAutocomplete); |
| 569 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, SaneMetricsWithCacheMismatch); | 569 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, SaneMetricsWithCacheMismatch); |
| 570 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, TestExternalDelegate); | 570 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, TestExternalDelegate); |
| 571 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | 571 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
| 572 TestTabContentsWithExternalDelegate); | 572 TestTabContentsWithExternalDelegate); |
| 573 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, | 573 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, |
| 574 UserHappinessFormLoadAndSubmission); | 574 UserHappinessFormLoadAndSubmission); |
| 575 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); | 575 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); |
| 576 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | 576 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
| 577 FormSubmittedAutocompleteEnabled); | |
| 578 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | |
| 579 OnLoadedServerPredictions); | 577 OnLoadedServerPredictions); |
| 580 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | 578 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
| 581 OnLoadedServerPredictions_ResetManager); | 579 OnLoadedServerPredictions_ResetManager); |
| 582 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | |
| 583 AutocompleteSuggestions_SomeWhenAutofillDisabled); | |
| 584 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | |
| 585 AutocompleteSuggestions_SomeWhenAutofillEmpty); | |
| 586 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | |
| 587 AutocompleteSuggestions_NoneWhenAutofillPresent); | |
| 588 FRIEND_TEST_ALL_PREFIXES( | |
| 589 AutofillManagerTest, | |
| 590 AutocompleteSuggestions_CreditCardNameFieldShouldAutocomplete); | |
| 591 FRIEND_TEST_ALL_PREFIXES( | |
| 592 AutofillManagerTest, | |
| 593 AutocompleteSuggestions_CreditCardNumberShouldNotAutocomplete); | |
| 594 FRIEND_TEST_ALL_PREFIXES( | |
| 595 AutofillManagerTest, | |
| 596 AutocompleteSuggestions_AutofillDisabledAndFieldShouldNotAutocomplete); | |
| 597 FRIEND_TEST_ALL_PREFIXES( | |
| 598 AutofillManagerTest, | |
| 599 AutocompleteSuggestions_NoneWhenAutofillEmptyFieldShouldNotAutocomplete); | |
| 600 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | |
| 601 AutocompleteOffRespectedForAutocomplete); | |
| 602 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | |
| 603 DontSaveCvcInAutocompleteHistory); | |
| 604 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, DontOfferToSavePaymentsCard); | 580 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, DontOfferToSavePaymentsCard); |
| 605 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillInUpdatedExpirationDate); | 581 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillInUpdatedExpirationDate); |
| 606 DISALLOW_COPY_AND_ASSIGN(AutofillManager); | 582 DISALLOW_COPY_AND_ASSIGN(AutofillManager); |
| 607 }; | 583 }; |
| 608 | 584 |
| 609 } // namespace autofill | 585 } // namespace autofill |
| 610 | 586 |
| 611 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ | 587 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ |
| OLD | NEW |