Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(337)

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_input_static.cc

Issue 25620002: [rac] Use i18n address inputs with --enable-autofill-address-i18n flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698