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

Unified Diff: chrome/browser/extensions/api/dial/device_description_fetcher_unittest.cc

Issue 2702503003: [Dial] Refactor DialRegistry and DeviceDescriptionFetcher so they can be used by MediaSinkService (Closed)
Patch Set: resolve code review comments from Derek Created 3 years, 9 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: chrome/browser/extensions/api/dial/device_description_fetcher_unittest.cc
diff --git a/chrome/browser/extensions/api/dial/device_description_fetcher_unittest.cc b/chrome/browser/extensions/api/dial/device_description_fetcher_unittest.cc
index 92b72c73a514a6bb298167cc79b2fdf12199bef1..7a64f4b845ce03fea2f1dcb20ecc530230c082c0 100644
--- a/chrome/browser/extensions/api/dial/device_description_fetcher_unittest.cc
+++ b/chrome/browser/extensions/api/dial/device_description_fetcher_unittest.cc
@@ -47,7 +47,8 @@ class DeviceDescriptionFetcherTest : public testing::Test {
net::TestURLFetcher* StartRequest() {
fetcher_ = base::MakeUnique<DeviceDescriptionFetcher>(
- url_, &profile_, std::move(success_cb_), std::move(error_cb_));
+ url_, profile_.GetRequestContext(), std::move(success_cb_),
+ std::move(error_cb_));
fetcher_->Start();
return factory_.GetFetcherByID(
DeviceDescriptionFetcher::kURLFetcherIDForTest);
« no previous file with comments | « chrome/browser/extensions/api/dial/device_description_fetcher.cc ('k') | chrome/browser/extensions/api/dial/dial_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698