| Index: chrome/browser/extensions/api/dial/dial_api.h
|
| diff --git a/chrome/browser/extensions/api/dial/dial_api.h b/chrome/browser/extensions/api/dial/dial_api.h
|
| index 66351f6efd3b045960d0165d8d521d8091ad7c4a..c9ba27a5081a534bdead0d5e1d25316cab6e3f6e 100644
|
| --- a/chrome/browser/extensions/api/dial/dial_api.h
|
| +++ b/chrome/browser/extensions/api/dial/dial_api.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef CHROME_BROWSER_EXTENSIONS_API_DIAL_DIAL_API_H_
|
| #define CHROME_BROWSER_EXTENSIONS_API_DIAL_DIAL_API_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/extensions/api/dial/dial_device_data.h"
|
| #include "chrome/browser/extensions/api/dial/dial_registry.h"
|
| #include "components/keyed_service/core/refcounted_keyed_service.h"
|
| @@ -62,7 +63,7 @@ class DialAPI : public RefcountedKeyedService,
|
| Profile* profile_;
|
|
|
| // Created lazily on first access on the IO thread.
|
| - scoped_ptr<DialRegistry> dial_registry_;
|
| + std::unique_ptr<DialRegistry> dial_registry_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(DialAPI);
|
| };
|
|
|