| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
| 18 #include "base/memory/scoped_vector.h" | 18 #include "base/memory/scoped_vector.h" |
| 19 #include "base/memory/weak_ptr.h" | 19 #include "base/memory/weak_ptr.h" |
| 20 #include "base/prefs/public/pref_change_registrar.h" |
| 20 #include "base/string16.h" | 21 #include "base/string16.h" |
| 21 #include "base/time.h" | 22 #include "base/time.h" |
| 22 #include "chrome/browser/api/prefs/pref_change_registrar.h" | |
| 23 #include "chrome/browser/api/sync/profile_sync_service_observer.h" | 23 #include "chrome/browser/api/sync/profile_sync_service_observer.h" |
| 24 #include "chrome/browser/autofill/autocomplete_history_manager.h" | 24 #include "chrome/browser/autofill/autocomplete_history_manager.h" |
| 25 #include "chrome/browser/autofill/autofill_download.h" | 25 #include "chrome/browser/autofill/autofill_download.h" |
| 26 #include "chrome/browser/autofill/field_types.h" | 26 #include "chrome/browser/autofill/field_types.h" |
| 27 #include "chrome/browser/autofill/form_structure.h" | 27 #include "chrome/browser/autofill/form_structure.h" |
| 28 #include "content/public/browser/notification_observer.h" | 28 #include "content/public/browser/notification_observer.h" |
| 29 #include "content/public/browser/web_contents_observer.h" | 29 #include "content/public/browser/web_contents_observer.h" |
| 30 | 30 |
| 31 class AutofillExternalDelegate; | 31 class AutofillExternalDelegate; |
| 32 class AutofillField; | 32 class AutofillField; |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 TestTabContentsWithExternalDelegate); | 407 TestTabContentsWithExternalDelegate); |
| 408 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, | 408 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, |
| 409 UserHappinessFormLoadAndSubmission); | 409 UserHappinessFormLoadAndSubmission); |
| 410 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); | 410 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); |
| 411 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, FormFillDuration); | 411 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, FormFillDuration); |
| 412 | 412 |
| 413 DISALLOW_COPY_AND_ASSIGN(AutofillManager); | 413 DISALLOW_COPY_AND_ASSIGN(AutofillManager); |
| 414 }; | 414 }; |
| 415 | 415 |
| 416 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ | 416 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ |
| OLD | NEW |