| OLD | NEW |
| 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 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ |
| 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ | 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <list> | 9 #include <list> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 friend class FormStructureBrowserTest; | 234 friend class FormStructureBrowserTest; |
| 235 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillCreditCardForm); | 235 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillCreditCardForm); |
| 236 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | 236 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
| 237 FillCreditCardFormNoYearNoMonth); | 237 FillCreditCardFormNoYearNoMonth); |
| 238 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillCreditCardFormYearNoMonth); | 238 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillCreditCardFormYearNoMonth); |
| 239 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillCreditCardFormNoYearMonth); | 239 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillCreditCardFormNoYearMonth); |
| 240 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillCreditCardFormYearMonth); | 240 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillCreditCardFormYearMonth); |
| 241 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillAddressForm); | 241 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillAddressForm); |
| 242 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillAddressAndCreditCardForm); | 242 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillAddressAndCreditCardForm); |
| 243 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillFormWithMultipleSections); | 243 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillFormWithMultipleSections); |
| 244 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
| 245 FillFormWithAuthorSpecifiedSections); |
| 244 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillFormWithMultipleEmails); | 246 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillFormWithMultipleEmails); |
| 245 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillAutofilledForm); | 247 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillAutofilledForm); |
| 246 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillPhoneNumber); | 248 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FillPhoneNumber); |
| 247 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FormChangesRemoveField); | 249 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FormChangesRemoveField); |
| 248 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FormChangesAddField); | 250 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FormChangesAddField); |
| 249 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FormSubmitted); | 251 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FormSubmitted); |
| 250 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FormSubmittedServerTypes); | 252 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FormSubmittedServerTypes); |
| 251 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FormSubmittedWithDefaultValues); | 253 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, FormSubmittedWithDefaultValues); |
| 252 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | 254 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
| 253 DeterminePossibleFieldTypesForUpload); | 255 DeterminePossibleFieldTypesForUpload); |
| 254 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | 256 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
| 255 DeterminePossibleFieldTypesForUploadStressTest); | 257 DeterminePossibleFieldTypesForUploadStressTest); |
| 256 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, AddressSuggestionsCount); | 258 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, AddressSuggestionsCount); |
| 257 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, AutofillIsEnabledAtPageLoad); | 259 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, AutofillIsEnabledAtPageLoad); |
| 258 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, | 260 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, |
| 259 NoQualityMetricsForNonAutofillableForms); | 261 NoQualityMetricsForNonAutofillableForms); |
| 260 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetrics); | 262 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetrics); |
| 261 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsForFailure); | 263 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsForFailure); |
| 262 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsWithExperimentId); | 264 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsWithExperimentId); |
| 263 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, SaneMetricsWithCacheMismatch); | 265 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, SaneMetricsWithCacheMismatch); |
| 264 | 266 |
| 265 DISALLOW_COPY_AND_ASSIGN(AutofillManager); | 267 DISALLOW_COPY_AND_ASSIGN(AutofillManager); |
| 266 }; | 268 }; |
| 267 | 269 |
| 268 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ | 270 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ |
| OLD | NEW |