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 20 matching lines...) Expand all Loading... |
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/new_credit_card_bubble_controller.h" | 37 #include "chrome/browser/ui/autofill/new_credit_card_bubble_controller.h" |
38 #include "chrome/browser/ui/browser.h" | 38 #include "chrome/browser/ui/browser.h" |
39 #include "chrome/browser/ui/browser_finder.h" | 39 #include "chrome/browser/ui/browser_finder.h" |
40 #include "chrome/browser/ui/browser_navigator.h" | 40 #include "chrome/browser/ui/browser_navigator.h" |
| 41 #include "chrome/browser/ui/browser_navigator_params.h" |
41 #include "chrome/browser/ui/browser_window.h" | 42 #include "chrome/browser/ui/browser_window.h" |
42 #include "chrome/common/pref_names.h" | 43 #include "chrome/common/pref_names.h" |
43 #include "chrome/common/url_constants.h" | 44 #include "chrome/common/url_constants.h" |
44 #include "chrome/grit/chromium_strings.h" | 45 #include "chrome/grit/chromium_strings.h" |
45 #include "chrome/grit/generated_resources.h" | 46 #include "chrome/grit/generated_resources.h" |
46 #include "components/autofill/core/browser/address_i18n.h" | 47 #include "components/autofill/core/browser/address_i18n.h" |
47 #include "components/autofill/core/browser/autofill_country.h" | 48 #include "components/autofill/core/browser/autofill_country.h" |
48 #include "components/autofill/core/browser/autofill_data_model.h" | 49 #include "components/autofill/core/browser/autofill_data_model.h" |
49 #include "components/autofill/core/browser/autofill_manager.h" | 50 #include "components/autofill/core/browser/autofill_manager.h" |
50 #include "components/autofill/core/browser/autofill_type.h" | 51 #include "components/autofill/core/browser/autofill_type.h" |
(...skipping 2257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2308 } | 2309 } |
2309 | 2310 |
2310 void AutofillDialogControllerImpl::OnSubmitButtonDelayEnd() { | 2311 void AutofillDialogControllerImpl::OnSubmitButtonDelayEnd() { |
2311 if (!view_) | 2312 if (!view_) |
2312 return; | 2313 return; |
2313 ScopedViewUpdates updates(view_.get()); | 2314 ScopedViewUpdates updates(view_.get()); |
2314 view_->UpdateButtonStrip(); | 2315 view_->UpdateButtonStrip(); |
2315 } | 2316 } |
2316 | 2317 |
2317 } // namespace autofill | 2318 } // namespace autofill |
OLD | NEW |