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

Side by Side Diff: third_party/libaddressinput/chromium/addressinput_util.h

Issue 368243007: Reland of "Use address_data.h from upstream libaddressinput". (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update BUILD.gn, fix a test. Created 6 years, 5 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 2014 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 #ifndef THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_ADDRESSINPUT_UTIL_H_
6 #define THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_ADDRESSINPUT_UTIL_H_
7
8 #include <map>
9
10 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/addre ss_field.h"
11 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/addre ss_problem.h"
12
13 namespace i18n {
14 namespace addressinput {
15 struct AddressData;
16 }
17 }
18
19 namespace autofill {
20 namespace addressinput {
21
22 // Returns true if |address_to_check| has all of its required fields.
23 bool HasAllRequiredFields(
24 const ::i18n::addressinput::AddressData& address_to_check);
25
26 // Validates required fields in |address_to_check| without loading rules from
27 // the server. The |problems| parameter cannot be NULL. Does not take ownership
28 // of its parameters.
29 //
30 // See documentation of ::i18n::addressinput::AddressValidator::Validate() for
31 // description of |filter| and |problems|.
32 void ValidateRequiredFields(
33 const ::i18n::addressinput::AddressData& address_to_check,
34 const std::multimap< ::i18n::addressinput::AddressField,
35 ::i18n::addressinput::AddressProblem::Type>* filter,
36 std::multimap< ::i18n::addressinput::AddressField,
37 ::i18n::addressinput::AddressProblem::Type>* problems);
38
39 } // namespace addressinput
40 } // namespace autofill
41
42 #endif // THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_ADDRESSINPUT_UTIL_H_
OLDNEW
« no previous file with comments | « third_party/libaddressinput/BUILD.gn ('k') | third_party/libaddressinput/chromium/addressinput_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698