| 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 <string> | 10 #include <string> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 class AutoFillCCInfoBarDelegate; | 21 class AutoFillCCInfoBarDelegate; |
| 22 class AutoFillProfile; | 22 class AutoFillProfile; |
| 23 class AutofillMetrics; | 23 class AutofillMetrics; |
| 24 class CreditCard; | 24 class CreditCard; |
| 25 class FormStructure; | 25 class FormStructure; |
| 26 class PrefService; | 26 class PrefService; |
| 27 class RenderViewHost; | 27 class RenderViewHost; |
| 28 | 28 |
| 29 namespace webkit_glue { | 29 namespace webkit_glue { |
| 30 struct FormData; | 30 struct FormData; |
| 31 class FormField; | 31 struct FormField; |
| 32 } // namespace webkit_glue | 32 } // namespace webkit_glue |
| 33 | 33 |
| 34 // Manages saving and restoring the user's personal information entered into web | 34 // Manages saving and restoring the user's personal information entered into web |
| 35 // forms. | 35 // forms. |
| 36 class AutofillManager : public TabContentsObserver, | 36 class AutofillManager : public TabContentsObserver, |
| 37 public AutofillDownloadManager::Observer { | 37 public AutofillDownloadManager::Observer { |
| 38 public: | 38 public: |
| 39 explicit AutofillManager(TabContents* tab_contents); | 39 explicit AutofillManager(TabContents* tab_contents); |
| 40 virtual ~AutofillManager(); | 40 virtual ~AutofillManager(); |
| 41 | 41 |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, | 236 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, |
| 237 NoQualityMetricsForNonAutofillableForms); | 237 NoQualityMetricsForNonAutofillableForms); |
| 238 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, SaneMetricsWithCacheMismatch); | 238 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, SaneMetricsWithCacheMismatch); |
| 239 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsForFailure); | 239 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsForFailure); |
| 240 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsWithExperimentId); | 240 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsWithExperimentId); |
| 241 | 241 |
| 242 DISALLOW_COPY_AND_ASSIGN(AutofillManager); | 242 DISALLOW_COPY_AND_ASSIGN(AutofillManager); |
| 243 }; | 243 }; |
| 244 | 244 |
| 245 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ | 245 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ |
| OLD | NEW |