| Index: chromecast/service/cast_service.h
|
| diff --git a/chromecast/service/cast_service.h b/chromecast/service/cast_service.h
|
| index 48a4066e370c25978ad327dfebb74a0eeeaf5d62..6819b83da424eeb33feacb97f36db9982bbff21a 100644
|
| --- a/chromecast/service/cast_service.h
|
| +++ b/chromecast/service/cast_service.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef CHROMECAST_SERVICE_CAST_SERVICE_H_
|
| #define CHROMECAST_SERVICE_CAST_SERVICE_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/callback.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
|
|
| class PrefService;
|
|
|
| @@ -67,7 +68,7 @@ class CastService {
|
| content::BrowserContext* const browser_context_;
|
| PrefService* const pref_service_;
|
| bool stopped_;
|
| - const scoped_ptr<base::ThreadChecker> thread_checker_;
|
| + const std::unique_ptr<base::ThreadChecker> thread_checker_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(CastService);
|
| };
|
|
|