| 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 <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsWithExperimentId); | 365 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsWithExperimentId); |
| 366 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, SaneMetricsWithCacheMismatch); | 366 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, SaneMetricsWithCacheMismatch); |
| 367 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, TestExternalDelegate); | 367 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, TestExternalDelegate); |
| 368 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | 368 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
| 369 TestTabContentsWithExternalDelegate); | 369 TestTabContentsWithExternalDelegate); |
| 370 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, | 370 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, |
| 371 UserHappinessFormLoadAndSubmission); | 371 UserHappinessFormLoadAndSubmission); |
| 372 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); | 372 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); |
| 373 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | 373 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
| 374 FormSubmittedAutocompleteEnabled); | 374 FormSubmittedAutocompleteEnabled); |
| 375 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
| 376 AutocompleteOffRespected); |
| 377 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
| 378 AutocompleteOffRespectedWithFlag); |
| 375 DISALLOW_COPY_AND_ASSIGN(AutofillManager); | 379 DISALLOW_COPY_AND_ASSIGN(AutofillManager); |
| 376 }; | 380 }; |
| 377 | 381 |
| 378 } // namespace autofill | 382 } // namespace autofill |
| 379 | 383 |
| 380 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ | 384 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ |
| OLD | NEW |