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_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "base/string16.h" | 13 #include "base/string16.h" |
14 #include "base/time.h" | 14 #include "base/time.h" |
15 #include "chrome/browser/autofill/autofill_manager_delegate.h" | |
16 #include "chrome/browser/autofill/autofill_metrics.h" | |
17 #include "chrome/browser/autofill/autofill_popup_delegate.h" | |
18 #include "chrome/browser/autofill/field_types.h" | |
19 #include "chrome/browser/autofill/form_structure.h" | |
20 #include "chrome/browser/autofill/personal_data_manager.h" | |
21 #include "chrome/browser/autofill/personal_data_manager_observer.h" | |
22 #include "chrome/browser/autofill/wallet/required_action.h" | |
23 #include "chrome/browser/autofill/wallet/wallet_client.h" | |
24 #include "chrome/browser/autofill/wallet/wallet_client_observer.h" | |
25 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h" | 15 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h" |
26 #include "chrome/browser/ui/autofill/autofill_dialog_models.h" | 16 #include "chrome/browser/ui/autofill/autofill_dialog_models.h" |
27 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | 17 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" |
28 #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h" | 18 #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h" |
29 #include "chrome/browser/ui/autofill/country_combobox_model.h" | 19 #include "chrome/browser/ui/autofill/country_combobox_model.h" |
| 20 #include "components/autofill/browser/autofill_manager_delegate.h" |
| 21 #include "components/autofill/browser/autofill_metrics.h" |
| 22 #include "components/autofill/browser/autofill_popup_delegate.h" |
| 23 #include "components/autofill/browser/field_types.h" |
| 24 #include "components/autofill/browser/form_structure.h" |
| 25 #include "components/autofill/browser/personal_data_manager.h" |
| 26 #include "components/autofill/browser/personal_data_manager_observer.h" |
| 27 #include "components/autofill/browser/wallet/required_action.h" |
| 28 #include "components/autofill/browser/wallet/wallet_client.h" |
| 29 #include "components/autofill/browser/wallet/wallet_client_observer.h" |
30 #include "content/public/browser/notification_observer.h" | 30 #include "content/public/browser/notification_observer.h" |
31 #include "content/public/browser/notification_registrar.h" | 31 #include "content/public/browser/notification_registrar.h" |
32 #include "content/public/common/ssl_status.h" | 32 #include "content/public/common/ssl_status.h" |
33 #include "googleurl/src/gurl.h" | 33 #include "googleurl/src/gurl.h" |
34 #include "ui/base/models/simple_menu_model.h" | 34 #include "ui/base/models/simple_menu_model.h" |
35 #include "ui/base/ui_base_types.h" | 35 #include "ui/base/ui_base_types.h" |
36 | 36 |
37 class AutofillPopupControllerImpl; | 37 class AutofillPopupControllerImpl; |
38 class FormGroup; | 38 class FormGroup; |
39 class Profile; | 39 class Profile; |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 | 374 |
375 // Whether or not there was an error in the Autocheckout flow. | 375 // Whether or not there was an error in the Autocheckout flow. |
376 bool had_autocheckout_error_; | 376 bool had_autocheckout_error_; |
377 | 377 |
378 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); | 378 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); |
379 }; | 379 }; |
380 | 380 |
381 } // namespace autofill | 381 } // namespace autofill |
382 | 382 |
383 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 383 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
OLD | NEW |