| 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> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
| 15 #include "base/scoped_vector.h" | 15 #include "base/scoped_vector.h" |
| 16 #include "chrome/browser/autofill/autofill_dialog.h" | 16 #include "chrome/browser/autofill/autofill_dialog.h" |
| 17 #include "chrome/browser/autofill/autofill_download.h" | 17 #include "chrome/browser/autofill/autofill_download.h" |
| 18 #include "chrome/browser/autofill/personal_data_manager.h" | 18 #include "chrome/browser/autofill/personal_data_manager.h" |
| 19 #include "chrome/browser/tab_contents/tab_contents_observer.h" | 19 #include "content/browser/tab_contents/tab_contents_observer.h" |
| 20 | 20 |
| 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 { |
| (...skipping 206 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 |