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

Unified Diff: components/dom_distiller/core/dom_distiller_service_unittest.cc

Issue 140113002: Fix memory leak in readingListPrivate api test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: inline 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: components/dom_distiller/core/dom_distiller_service_unittest.cc
diff --git a/components/dom_distiller/core/dom_distiller_service_unittest.cc b/components/dom_distiller/core/dom_distiller_service_unittest.cc
index 4719cd2e3ca5c9cdd16aa3faad1c3d5bb849a36e..35065fdf913f838b713b8cc1dd20e23684f6f28b 100644
--- a/components/dom_distiller/core/dom_distiller_service_unittest.cc
+++ b/components/dom_distiller/core/dom_distiller_service_unittest.cc
@@ -65,7 +65,7 @@ class DomDistillerServiceTest : public testing::Test {
main_loop_.reset(new base::MessageLoop());
FakeDB* fake_db = new FakeDB(&db_model_);
FakeDB::EntryMap store_model;
- store_ = test::util::CreateStoreWithFakeDB(fake_db, &store_model);
+ store_ = test::util::CreateStoreWithFakeDB(fake_db, store_model);
distiller_factory_ = new MockDistillerFactory();
service_.reset(new DomDistillerService(
scoped_ptr<DomDistillerStoreInterface>(store_),

Powered by Google App Engine
This is Rietveld 408576698