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 COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_MANAGER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_MANAGER_H_ |
6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_MANAGER_H_ | 6 #define COMPONENTS_AUTOFILL_BROWSER_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/callback_forward.h" | 14 #include "base/callback_forward.h" |
15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
16 #include "base/gtest_prod_util.h" | 16 #include "base/gtest_prod_util.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/strings/string16.h" | 20 #include "base/strings/string16.h" |
21 #include "base/supports_user_data.h" | 21 #include "base/supports_user_data.h" |
22 #include "base/time.h" | 22 #include "base/time.h" |
23 #include "components/autofill/browser/autocomplete_history_manager.h" | 23 #include "components/autofill/browser/autocomplete_history_manager.h" |
24 #include "components/autofill/browser/autofill_download.h" | 24 #include "components/autofill/browser/autofill_download.h" |
25 #include "components/autofill/browser/autofill_manager_delegate.h" | 25 #include "components/autofill/browser/autofill_manager_delegate.h" |
26 #include "components/autofill/browser/field_types.h" | 26 #include "components/autofill/browser/field_types.h" |
27 #include "components/autofill/browser/form_structure.h" | 27 #include "components/autofill/browser/form_structure.h" |
28 #include "components/autofill/browser/personal_data_manager.h" | 28 #include "components/autofill/browser/personal_data_manager.h" |
29 #include "components/autofill/common/autocheckout_status.h" | |
30 #include "components/autofill/common/form_data.h" | |
31 #include "components/autofill/common/forms_seen_state.h" | |
32 #include "components/autofill/content/browser/autocheckout_manager.h" | 29 #include "components/autofill/content/browser/autocheckout_manager.h" |
| 30 #include "components/autofill/shared/autocheckout_status.h" |
| 31 #include "components/autofill/shared/form_data.h" |
| 32 #include "components/autofill/shared/forms_seen_state.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 GURL; | 37 class GURL; |
38 | 38 |
39 struct ViewHostMsg_FrameNavigate_Params; | 39 struct ViewHostMsg_FrameNavigate_Params; |
40 | 40 |
41 namespace content { | 41 namespace content { |
42 class RenderViewHost; | 42 class RenderViewHost; |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, | 426 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, |
427 UserHappinessFormLoadAndSubmission); | 427 UserHappinessFormLoadAndSubmission); |
428 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); | 428 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); |
429 | 429 |
430 DISALLOW_COPY_AND_ASSIGN(AutofillManager); | 430 DISALLOW_COPY_AND_ASSIGN(AutofillManager); |
431 }; | 431 }; |
432 | 432 |
433 } // namespace autofill | 433 } // namespace autofill |
434 | 434 |
435 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_MANAGER_H_ | 435 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_MANAGER_H_ |
OLD | NEW |