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

Side by Side Diff: third_party/libaddressinput/chromium/cpp/src/address_validator.cc

Issue 106863006: [rac] Add AddressValidator API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Return RULES_UNAVAIBLE if LoadRules() was not called. Created 7 years 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 (C) 2013 Google Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #include <libaddressinput/address_validator.h>
16
17 #include <libaddressinput/downloader.h>
roubert 2013/12/11 17:38:26 You're not actually using this header file.
18 #include <libaddressinput/load_rules_delegate.h>
19 #include <libaddressinput/storage.h>
roubert 2013/12/11 17:38:26 You're not actually using this header file.
20
21 #include <cassert>
roubert 2013/12/11 17:38:26 You're not actually using this header file.
22 #include <cstddef>
23 #include <string>
24
25 #include "retriever.h"
26 #include "rule_retriever.h"
27 #include "validating_storage.h"
28
29 namespace i18n {
30 namespace addressinput {
31
32 AddressValidator::AddressValidator(const Downloader* downloader,
33 Storage* storage,
34 LoadRulesDelegate* load_rules_delegate)
35 : rule_retriever_(new RuleRetriever(new Retriever(
36 VALIDATION_DATA_URL, downloader, new ValidatingStorage(storage)))),
37 load_rules_delegate_(load_rules_delegate) {}
38
39 AddressValidator::~AddressValidator() {}
40
41 void AddressValidator::LoadRules(const std::string& country_code) {
42 if (load_rules_delegate_ != NULL) {
43 load_rules_delegate_->OnAddressValidationRulesLoaded(country_code, false);
Evan Stade 2013/12/11 03:22:10 nit: as far as a stub implementation is concerned,
44 }
45 }
46
47 AddressValidator::Result AddressValidator::ValidateAddress(
48 const AddressData& address,
49 const AddressProblemFilter& filter,
50 AddressProblems* problems) const {
51 return RULES_UNAVAILABLE;
52 }
53
54 } // namespace addressinput
55 } // namespace i18n
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698