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/prefs/public/pref_change_registrar.h" | 13 #include "base/prefs/public/pref_change_registrar.h" |
14 #include "base/string16.h" | 14 #include "base/string16.h" |
15 #include "base/time.h" | 15 #include "base/time.h" |
16 #include "chrome/browser/autofill/autofill_manager_delegate.h" | 16 #include "chrome/browser/autofill/autofill_manager_delegate.h" |
17 #include "chrome/browser/autofill/autofill_metrics.h" | 17 #include "chrome/browser/autofill/autofill_metrics.h" |
18 #include "chrome/browser/autofill/field_types.h" | 18 #include "chrome/browser/autofill/field_types.h" |
19 #include "chrome/browser/autofill/form_structure.h" | 19 #include "chrome/browser/autofill/form_structure.h" |
20 #include "chrome/browser/autofill/personal_data_manager.h" | 20 #include "chrome/browser/autofill/personal_data_manager.h" |
21 #include "chrome/browser/autofill/personal_data_manager_observer.h" | 21 #include "chrome/browser/autofill/personal_data_manager_observer.h" |
22 #include "chrome/browser/autofill/wallet/required_action.h" | 22 #include "chrome/browser/autofill/wallet/required_action.h" |
23 #include "chrome/browser/autofill/wallet/wallet_client.h" | 23 #include "chrome/browser/autofill/wallet/wallet_client.h" |
24 #include "chrome/browser/autofill/wallet/wallet_client_observer.h" | 24 #include "chrome/browser/autofill/wallet/wallet_client_observer.h" |
25 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h" | 25 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h" |
26 #include "chrome/browser/ui/autofill/autofill_dialog_models.h" | 26 #include "chrome/browser/ui/autofill/autofill_dialog_models.h" |
27 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | 27 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" |
28 #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h" | 28 #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h" |
29 #include "chrome/browser/ui/autofill/autofill_popup_delegate.h" | 29 #include "chrome/browser/ui/autofill/autofill_popup_delegate.h" |
| 30 #include "chrome/browser/ui/autofill/country_combobox_model.h" |
30 #include "content/public/browser/notification_observer.h" | 31 #include "content/public/browser/notification_observer.h" |
31 #include "content/public/browser/notification_registrar.h" | 32 #include "content/public/browser/notification_registrar.h" |
32 #include "content/public/common/ssl_status.h" | 33 #include "content/public/common/ssl_status.h" |
33 #include "googleurl/src/gurl.h" | 34 #include "googleurl/src/gurl.h" |
34 #include "ui/base/models/simple_menu_model.h" | 35 #include "ui/base/models/simple_menu_model.h" |
35 | 36 |
36 class AutofillPopupControllerImpl; | 37 class AutofillPopupControllerImpl; |
37 class FormGroup; | 38 class FormGroup; |
38 class Profile; | 39 class Profile; |
39 class PrefRegistrySyncable; | 40 class PrefRegistrySyncable; |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 const AutofillMetrics& metric_logger_; | 346 const AutofillMetrics& metric_logger_; |
346 base::Time dialog_shown_timestamp_; | 347 base::Time dialog_shown_timestamp_; |
347 DialogType dialog_type_; | 348 DialogType dialog_type_; |
348 | 349 |
349 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); | 350 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); |
350 }; | 351 }; |
351 | 352 |
352 } // namespace autofill | 353 } // namespace autofill |
353 | 354 |
354 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 355 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
OLD | NEW |