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

Unified Diff: chromecast/net/net_util_cast.cc

Issue 1875623002: Convert //chromecast from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « chromecast/net/connectivity_checker_impl.cc ('k') | chromecast/renderer/cast_content_renderer_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/net/net_util_cast.cc
diff --git a/chromecast/net/net_util_cast.cc b/chromecast/net/net_util_cast.cc
index f94fe64cb2bb8fb76e5d745e0f1e9c212304cc46..e99731cb4e430e7fdc5fed3bf4ae2246b4a87913 100644
--- a/chromecast/net/net_util_cast.cc
+++ b/chromecast/net/net_util_cast.cc
@@ -14,7 +14,7 @@ namespace chromecast {
base::hash_set<std::string> GetIgnoredInterfaces() {
base::hash_set<std::string> ignored_interfaces;
- scoped_ptr<CastSysInfo> sys_info = CreateSysInfo();
+ std::unique_ptr<CastSysInfo> sys_info = CreateSysInfo();
if (!sys_info->GetApInterface().empty())
ignored_interfaces.insert(sys_info->GetApInterface());
« no previous file with comments | « chromecast/net/connectivity_checker_impl.cc ('k') | chromecast/renderer/cast_content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698