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

Unified Diff: third_party/libaddressinput/chromium/cpp/src/util/json.cc

Issue 106863006: [rac] Add AddressValidator API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo in comment. 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 side-by-side diff with in-line comments
Download patch
Index: third_party/libaddressinput/chromium/cpp/src/util/json.cc
diff --git a/third_party/libaddressinput/chromium/cpp/src/util/json.cc b/third_party/libaddressinput/chromium/cpp/src/util/json.cc
index 4a9296bd3efcd09e42514c9c6b6d90e08920bc57..30daffc1aaea5c22cea5e3c0fa2debbe1f2c9269 100644
--- a/third_party/libaddressinput/chromium/cpp/src/util/json.cc
+++ b/third_party/libaddressinput/chromium/cpp/src/util/json.cc
@@ -33,7 +33,7 @@ class Rapidjson : public Json {
public:
Rapidjson() : document_(new rapidjson::Document), valid_(false) {}
- virtual ~RapidJson() {}
+ virtual ~Rapidjson() {}
virtual bool ParseObject(const std::string& json) {
document_->Parse<rapidjson::kParseValidateEncodingFlag>(json.c_str());
@@ -53,7 +53,7 @@ class Rapidjson : public Json {
assert(member != NULL);
assert(member->value.IsString());
return std::string(member->value.GetString(),
- member->value.GetStringLength());
+ member->value.GetStringLength());
}
protected:

Powered by Google App Engine
This is Rietveld 408576698