| Index: chromecast/browser/service/cast_service_simple.h
|
| diff --git a/chromecast/browser/service/cast_service_simple.h b/chromecast/browser/service/cast_service_simple.h
|
| index ad75f301b4289439117b5328dcba217a93d1562e..f40cc867b2a96d9d3985a29695d9b231f40b0162 100644
|
| --- a/chromecast/browser/service/cast_service_simple.h
|
| +++ b/chromecast/browser/service/cast_service_simple.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef CHROMECAST_BROWSER_SERVICE_CAST_SERVICE_SIMPLE_H_
|
| #define CHROMECAST_BROWSER_SERVICE_CAST_SERVICE_SIMPLE_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "chromecast/service/cast_service.h"
|
| #include "url/gurl.h"
|
|
|
| @@ -32,8 +33,8 @@ class CastServiceSimple : public CastService {
|
| void StopInternal() override;
|
|
|
| private:
|
| - scoped_ptr<CastContentWindow> window_;
|
| - scoped_ptr<content::WebContents> web_contents_;
|
| + std::unique_ptr<CastContentWindow> window_;
|
| + std::unique_ptr<content::WebContents> web_contents_;
|
| GURL startup_url_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(CastServiceSimple);
|
|
|