| Index: chrome/browser/ui/autofill/autofill_dialog_input_static.cc
|
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_input_static.cc b/chrome/browser/ui/autofill/autofill_dialog_input_static.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c931ed1c6a78a80bee4acac7eab91635dc65602c
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_input_static.cc
|
| @@ -0,0 +1,30 @@
|
| +// Copyright 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chrome/browser/ui/autofill/autofill_dialog_input_static.h"
|
| +
|
| +#include "chrome/browser/ui/autofill/autofill_dialog_common.h"
|
| +
|
| +namespace autofill {
|
| +namespace common {
|
| +
|
| +AutofillDialogInputStatic::AutofillDialogInputStatic() {}
|
| +
|
| +AutofillDialogInputStatic::~AutofillDialogInputStatic() {}
|
| +
|
| +void AutofillDialogInputStatic::BuildInputsForSection(
|
| + DialogSection dialog_section,
|
| + DetailInputs* inputs) {
|
| + return BuildInputsForSection(dialog_section, inputs);
|
| +}
|
| +
|
| +void AutofillDialogInputStatic::BuildInputsForSection(
|
| + DialogSection dialog_section,
|
| + const std::string& selected_country_region,
|
| + DetailInputs* inputs) {
|
| + return BuildInputsForSection(dialog_section, inputs);
|
| +}
|
| +
|
| +} // namespace common
|
| +} // namespace autofill
|
|
|