| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "chrome/browser/ui/autofill/autofill_dialog_controller_impl.h" | 5 #include "chrome/browser/ui/autofill/autofill_dialog_controller_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "base/time/time.h" | 27 #include "base/time/time.h" |
| 28 #include "chrome/browser/autofill/personal_data_manager_factory.h" | 28 #include "chrome/browser/autofill/personal_data_manager_factory.h" |
| 29 #include "chrome/browser/autofill/risk_util.h" | 29 #include "chrome/browser/autofill/risk_util.h" |
| 30 #include "chrome/browser/autofill/validation_rules_storage_factory.h" | 30 #include "chrome/browser/autofill/validation_rules_storage_factory.h" |
| 31 #include "chrome/browser/browser_process.h" | 31 #include "chrome/browser/browser_process.h" |
| 32 #include "chrome/browser/profiles/profile.h" | 32 #include "chrome/browser/profiles/profile.h" |
| 33 #include "chrome/browser/ui/autofill/autofill_dialog_common.h" | 33 #include "chrome/browser/ui/autofill/autofill_dialog_common.h" |
| 34 #include "chrome/browser/ui/autofill/autofill_dialog_i18n_input.h" | 34 #include "chrome/browser/ui/autofill/autofill_dialog_i18n_input.h" |
| 35 #include "chrome/browser/ui/autofill/autofill_dialog_view.h" | 35 #include "chrome/browser/ui/autofill/autofill_dialog_view.h" |
| 36 #include "chrome/browser/ui/autofill/data_model_wrapper.h" | 36 #include "chrome/browser/ui/autofill/data_model_wrapper.h" |
| 37 #include "chrome/browser/ui/autofill/generated_credit_card_bubble_controller.h" | |
| 38 #include "chrome/browser/ui/autofill/new_credit_card_bubble_controller.h" | 37 #include "chrome/browser/ui/autofill/new_credit_card_bubble_controller.h" |
| 39 #include "chrome/browser/ui/browser.h" | 38 #include "chrome/browser/ui/browser.h" |
| 40 #include "chrome/browser/ui/browser_finder.h" | 39 #include "chrome/browser/ui/browser_finder.h" |
| 41 #include "chrome/browser/ui/browser_navigator.h" | 40 #include "chrome/browser/ui/browser_navigator.h" |
| 42 #include "chrome/browser/ui/browser_window.h" | 41 #include "chrome/browser/ui/browser_window.h" |
| 43 #include "chrome/common/pref_names.h" | 42 #include "chrome/common/pref_names.h" |
| 44 #include "chrome/common/url_constants.h" | 43 #include "chrome/common/url_constants.h" |
| 45 #include "chrome/grit/chromium_strings.h" | 44 #include "chrome/grit/chromium_strings.h" |
| 46 #include "chrome/grit/generated_resources.h" | 45 #include "chrome/grit/generated_resources.h" |
| 47 #include "components/autofill/content/browser/wallet/form_field_error.h" | 46 #include "components/autofill/content/browser/wallet/form_field_error.h" |
| (...skipping 2274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2322 } | 2321 } |
| 2323 | 2322 |
| 2324 void AutofillDialogControllerImpl::OnSubmitButtonDelayEnd() { | 2323 void AutofillDialogControllerImpl::OnSubmitButtonDelayEnd() { |
| 2325 if (!view_) | 2324 if (!view_) |
| 2326 return; | 2325 return; |
| 2327 ScopedViewUpdates updates(view_.get()); | 2326 ScopedViewUpdates updates(view_.get()); |
| 2328 view_->UpdateButtonStrip(); | 2327 view_->UpdateButtonStrip(); |
| 2329 } | 2328 } |
| 2330 | 2329 |
| 2331 } // namespace autofill | 2330 } // namespace autofill |
| OLD | NEW |