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

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

Issue 1879613003: Convert //components/dom_distiller from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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/distiller_url_fetcher_unittest.cc
diff --git a/components/dom_distiller/core/distiller_url_fetcher_unittest.cc b/components/dom_distiller/core/distiller_url_fetcher_unittest.cc
index f100d5cd482c6995bdd69a5202156c22772f3f84..41df9f82967f8e8622cb1d4f875f15ed5255937a 100644
--- a/components/dom_distiller/core/distiller_url_fetcher_unittest.cc
+++ b/components/dom_distiller/core/distiller_url_fetcher_unittest.cc
@@ -54,8 +54,8 @@ class DistillerURLFetcherTest : public testing::Test {
CHECK_EQ(expected_response, response_);
}
- scoped_ptr<dom_distiller::DistillerURLFetcher> url_fetcher_;
- scoped_ptr<net::FakeURLFetcherFactory> factory_;
+ std::unique_ptr<dom_distiller::DistillerURLFetcher> url_fetcher_;
+ std::unique_ptr<net::FakeURLFetcherFactory> factory_;
std::string response_;
};

Powered by Google App Engine
This is Rietveld 408576698