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

Unified Diff: chromecast/utility/cast_content_utility_client.h

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/service/cast_service.h ('k') | chromecast/utility/cast_content_utility_client_simple.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/utility/cast_content_utility_client.h
diff --git a/chromecast/utility/cast_content_utility_client.h b/chromecast/utility/cast_content_utility_client.h
index bd5e0fd9cbc12d527180c836a93d6911d3471c0d..7f7528d85fe673a24853d379ea3c53ce4d3bae7e 100644
--- a/chromecast/utility/cast_content_utility_client.h
+++ b/chromecast/utility/cast_content_utility_client.h
@@ -5,8 +5,9 @@
#ifndef CHROMECAST_UTILITY_CAST_CONTENT_UTILITY_CLIENT_H_
#define CHROMECAST_UTILITY_CAST_CONTENT_UTILITY_CLIENT_H_
+#include <memory>
+
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "content/public/utility/content_utility_client.h"
namespace chromecast {
@@ -14,7 +15,7 @@ namespace shell {
class CastContentUtilityClient : public content::ContentUtilityClient {
public:
- static scoped_ptr<CastContentUtilityClient> Create();
+ static std::unique_ptr<CastContentUtilityClient> Create();
CastContentUtilityClient() {}
« no previous file with comments | « chromecast/service/cast_service.h ('k') | chromecast/utility/cast_content_utility_client_simple.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698