| 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> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "base/string16.h" | 21 #include "base/string16.h" |
| 22 #include "base/supports_user_data.h" | 22 #include "base/supports_user_data.h" |
| 23 #include "base/time.h" | 23 #include "base/time.h" |
| 24 #include "chrome/browser/autofill/autocheckout_manager.h" | 24 #include "chrome/browser/autofill/autocheckout_manager.h" |
| 25 #include "chrome/browser/autofill/autocomplete_history_manager.h" | 25 #include "chrome/browser/autofill/autocomplete_history_manager.h" |
| 26 #include "chrome/browser/autofill/autofill_download.h" | 26 #include "chrome/browser/autofill/autofill_download.h" |
| 27 #include "chrome/browser/autofill/autofill_manager_delegate.h" | 27 #include "chrome/browser/autofill/autofill_manager_delegate.h" |
| 28 #include "chrome/browser/autofill/field_types.h" | 28 #include "chrome/browser/autofill/field_types.h" |
| 29 #include "chrome/browser/autofill/form_structure.h" | 29 #include "chrome/browser/autofill/form_structure.h" |
| 30 #include "chrome/browser/autofill/personal_data_manager.h" | 30 #include "chrome/browser/autofill/personal_data_manager.h" |
| 31 #include "chrome/common/autofill/autocheckout_status.h" | 31 #include "components/autofill/common/autocheckout_status.h" |
| 32 #include "chrome/common/form_data.h" | 32 #include "components/autofill/common/form_data.h" |
| 33 #include "content/public/browser/web_contents_observer.h" | 33 #include "content/public/browser/web_contents_observer.h" |
| 34 #include "content/public/common/ssl_status.h" | 34 #include "content/public/common/ssl_status.h" |
| 35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" | 35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" |
| 36 | 36 |
| 37 class AutofillExternalDelegate; | 37 class AutofillExternalDelegate; |
| 38 class AutofillField; | 38 class AutofillField; |
| 39 class AutofillProfile; | 39 class AutofillProfile; |
| 40 class AutofillMetrics; | 40 class AutofillMetrics; |
| 41 class CreditCard; | 41 class CreditCard; |
| 42 class FormGroup; | 42 class FormGroup; |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, | 433 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, |
| 434 TestTabContentsWithExternalDelegate); | 434 TestTabContentsWithExternalDelegate); |
| 435 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, | 435 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, |
| 436 UserHappinessFormLoadAndSubmission); | 436 UserHappinessFormLoadAndSubmission); |
| 437 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); | 437 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); |
| 438 | 438 |
| 439 DISALLOW_COPY_AND_ASSIGN(AutofillManager); | 439 DISALLOW_COPY_AND_ASSIGN(AutofillManager); |
| 440 }; | 440 }; |
| 441 | 441 |
| 442 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ | 442 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ |
| OLD | NEW |