| 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..2511b396339cd821afe53e6fd7a7498f70221d91 100644
|
| --- a/third_party/libaddressinput/chromium/cpp/test/fake_storage.cc
|
| +++ b/third_party/libaddressinput/chromium/cpp/test/fake_storage.cc
|
| @@ -24,8 +24,8 @@ FakeStorage::FakeStorage() {}
|
|
|
| FakeStorage::~FakeStorage() {}
|
|
|
| -void FakeStorage::Put(const std::string& key, const std::string& data) {
|
| - data_[key] = data;
|
| +void FakeStorage::Put(const std::string& key, scoped_ptr<std::string> data) {
|
| + data_[key] = *data;
|
| }
|
|
|
| void FakeStorage::Get(const std::string& key,
|
|
|