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

Side by Side 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, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698