| Index: chrome/browser/chromeos/arc/arc_settings_service.h
|
| diff --git a/chrome/browser/chromeos/arc/arc_settings_service.h b/chrome/browser/chromeos/arc/arc_settings_service.h
|
| index d31944a25db6720bf12ebe1dd6711cf4cc43aacc..d1cca0d69bf4fe032e088c3816386698ce16b86a 100644
|
| --- a/chrome/browser/chromeos/arc/arc_settings_service.h
|
| +++ b/chrome/browser/chromeos/arc/arc_settings_service.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_ARC_ARC_SETTINGS_SERVICE_H_
|
| #define CHROME_BROWSER_CHROMEOS_ARC_ARC_SETTINGS_SERVICE_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "components/arc/arc_bridge_service.h"
|
| #include "components/arc/arc_service.h"
|
|
|
| @@ -25,7 +26,7 @@ class ArcSettingsService : public ArcService,
|
| void OnIntentHelperInstanceClosed() override;
|
|
|
| private:
|
| - scoped_ptr<ArcSettingsServiceImpl> impl_;
|
| + std::unique_ptr<ArcSettingsServiceImpl> impl_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ArcSettingsService);
|
| };
|
|
|