| 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 <set> | 8 #include <set> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 15 #include "base/time.h" | 15 #include "base/time.h" |
| 16 #include "chrome/browser/ui/autofill/account_chooser_model.h" | 16 #include "chrome/browser/ui/autofill/account_chooser_model.h" |
| 17 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h" | 17 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h" |
| 18 #include "chrome/browser/ui/autofill/autofill_dialog_models.h" | 18 #include "chrome/browser/ui/autofill/autofill_dialog_models.h" |
| 19 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | 19 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" |
| 20 #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h" | 20 #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h" |
| 21 #include "chrome/browser/ui/autofill/country_combobox_model.h" | 21 #include "chrome/browser/ui/autofill/country_combobox_model.h" |
| 22 #include "components/autofill/browser/autofill_manager_delegate.h" | |
| 23 #include "components/autofill/browser/autofill_metrics.h" | |
| 24 #include "components/autofill/browser/autofill_popup_delegate.h" | |
| 25 #include "components/autofill/browser/field_types.h" | |
| 26 #include "components/autofill/browser/form_structure.h" | |
| 27 #include "components/autofill/browser/personal_data_manager.h" | |
| 28 #include "components/autofill/browser/personal_data_manager_observer.h" | |
| 29 #include "components/autofill/content/browser/wallet/wallet_client.h" | 22 #include "components/autofill/content/browser/wallet/wallet_client.h" |
| 30 #include "components/autofill/content/browser/wallet/wallet_client_delegate.h" | 23 #include "components/autofill/content/browser/wallet/wallet_client_delegate.h" |
| 31 #include "components/autofill/content/browser/wallet/wallet_items.h" | 24 #include "components/autofill/content/browser/wallet/wallet_items.h" |
| 32 #include "components/autofill/content/browser/wallet/wallet_signin_helper_delega
te.h" | 25 #include "components/autofill/content/browser/wallet/wallet_signin_helper_delega
te.h" |
| 26 #include "components/autofill/core/browser/autofill_manager_delegate.h" |
| 27 #include "components/autofill/core/browser/autofill_metrics.h" |
| 28 #include "components/autofill/core/browser/autofill_popup_delegate.h" |
| 29 #include "components/autofill/core/browser/field_types.h" |
| 30 #include "components/autofill/core/browser/form_structure.h" |
| 31 #include "components/autofill/core/browser/personal_data_manager.h" |
| 32 #include "components/autofill/core/browser/personal_data_manager_observer.h" |
| 33 #include "content/public/browser/notification_observer.h" | 33 #include "content/public/browser/notification_observer.h" |
| 34 #include "content/public/browser/notification_registrar.h" | 34 #include "content/public/browser/notification_registrar.h" |
| 35 #include "content/public/common/ssl_status.h" | 35 #include "content/public/common/ssl_status.h" |
| 36 #include "googleurl/src/gurl.h" | 36 #include "googleurl/src/gurl.h" |
| 37 #include "ui/base/models/simple_menu_model.h" | 37 #include "ui/base/models/simple_menu_model.h" |
| 38 #include "ui/base/ui_base_types.h" | 38 #include "ui/base/ui_base_types.h" |
| 39 | 39 |
| 40 class Profile; | 40 class Profile; |
| 41 | 41 |
| 42 namespace content { | 42 namespace content { |
| (...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 | 665 |
| 666 // Whether the latency to display to the UI was logged to UMA yet. | 666 // Whether the latency to display to the UI was logged to UMA yet. |
| 667 bool was_ui_latency_logged_; | 667 bool was_ui_latency_logged_; |
| 668 | 668 |
| 669 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); | 669 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); |
| 670 }; | 670 }; |
| 671 | 671 |
| 672 } // namespace autofill | 672 } // namespace autofill |
| 673 | 673 |
| 674 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 674 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
| OLD | NEW |