Index: third_party/libaddressinput/chromium/cpp/test/country_rules_aggregator_test.cc |
diff --git a/third_party/libaddressinput/chromium/cpp/test/country_rules_aggregator_test.cc b/third_party/libaddressinput/chromium/cpp/test/country_rules_aggregator_test.cc |
index b82675b097082639c7bc8357dd8f6e6d8170f90c..ad157fb6157d26d43c4c771fdc1c4b513627fbb7 100644 |
--- a/third_party/libaddressinput/chromium/cpp/test/country_rules_aggregator_test.cc |
+++ b/third_party/libaddressinput/chromium/cpp/test/country_rules_aggregator_test.cc |
@@ -42,7 +42,7 @@ class CountryRulesAggregatorTest : public testing::Test { |
: aggregator_(scoped_ptr<Retriever>(new Retriever( |
FakeDownloader::kFakeDataUrl, |
scoped_ptr<Downloader>(new FakeDownloader), |
- scoped_ptr<Storage>(new FakeStorage)))), |
+ &storage_))), |
success_(false), |
country_code_(), |
ruleset_() {} |
@@ -69,6 +69,8 @@ class CountryRulesAggregatorTest : public testing::Test { |
ruleset_.reset(ruleset.release()); |
} |
+ FakeStorage storage_; |
+ |
DISALLOW_COPY_AND_ASSIGN(CountryRulesAggregatorTest); |
}; |