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

Unified Diff: remoting/test/host_list_fetcher.cc

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU 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
« no previous file with comments | « remoting/test/host_list_fetcher.h ('k') | remoting/test/host_list_fetcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/test/host_list_fetcher.cc
diff --git a/remoting/test/host_list_fetcher.cc b/remoting/test/host_list_fetcher.cc
index bac2db279ab19eae9fbde6db8c5e2968e84e3a01..73d4106a3fe9abde1ff3e00813e8273d83fe2267 100644
--- a/remoting/test/host_list_fetcher.cc
+++ b/remoting/test/host_list_fetcher.cc
@@ -60,7 +60,7 @@ bool HostListFetcher::ProcessResponse(
return false;
}
- scoped_ptr<base::Value> response_value(
+ std::unique_ptr<base::Value> response_value(
base::JSONReader::Read(response_string));
if (!response_value ||
!response_value->IsType(base::Value::TYPE_DICTIONARY)) {
« no previous file with comments | « remoting/test/host_list_fetcher.h ('k') | remoting/test/host_list_fetcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698