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

Unified Diff: third_party/libaddressinput/chromium/cpp/test/fake_storage.cc

Issue 145553009: rAc: use libaddressinput to validate international addresses. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 11 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: third_party/libaddressinput/chromium/cpp/test/fake_storage.cc
diff --git a/third_party/libaddressinput/chromium/cpp/test/fake_storage.cc b/third_party/libaddressinput/chromium/cpp/test/fake_storage.cc
index 531b23d14718a6738e0635404e8bc89b06e7a8ee..13117da02f732fa15a649dd04d78134f5acd623c 100644
--- a/third_party/libaddressinput/chromium/cpp/test/fake_storage.cc
+++ b/third_party/libaddressinput/chromium/cpp/test/fake_storage.cc
@@ -28,8 +28,7 @@ void FakeStorage::Put(const std::string& key, const std::string& data) {
data_[key] = data;
}
-void FakeStorage::Get(const std::string& key,
- scoped_ptr<Callback> data_ready) const {
+void FakeStorage::Get(const std::string& key, scoped_ptr<Callback> data_ready) {
std::map<std::string, std::string>::const_iterator data_it = data_.find(key);
bool success = data_it != data_.end();
std::string data = success ? data_it->second : std::string();

Powered by Google App Engine
This is Rietveld 408576698