| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/ui/autofill/autofill_dialog_input_static.h" |
| 6 |
| 7 #include "chrome/browser/ui/autofill/autofill_dialog_common.h" |
| 8 |
| 9 namespace autofill { |
| 10 namespace common { |
| 11 |
| 12 AutofillDialogInputStatic::AutofillDialogInputStatic() {} |
| 13 |
| 14 AutofillDialogInputStatic::~AutofillDialogInputStatic() {} |
| 15 |
| 16 void AutofillDialogInputStatic::BuildInputsForSection( |
| 17 DialogSection dialog_section, |
| 18 DetailInputs* inputs) { |
| 19 return BuildInputsForSection(dialog_section, inputs); |
| 20 } |
| 21 |
| 22 void AutofillDialogInputStatic::BuildInputsForSection( |
| 23 DialogSection dialog_section, |
| 24 const std::string& selected_country_region, |
| 25 DetailInputs* inputs) { |
| 26 return BuildInputsForSection(dialog_section, inputs); |
| 27 } |
| 28 |
| 29 } // namespace common |
| 30 } // namespace autofill |
| OLD | NEW |