| Index: chrome/browser/chromeos/app_mode/kiosk_external_updater.h
|
| diff --git a/chrome/browser/chromeos/app_mode/kiosk_external_updater.h b/chrome/browser/chromeos/app_mode/kiosk_external_updater.h
|
| index a76f81b1718f4a658e86b4a7b9445b60f62b1878..869a1dffdbc608fbfbd3959481fc2d890d688b7b 100644
|
| --- a/chrome/browser/chromeos/app_mode/kiosk_external_updater.h
|
| +++ b/chrome/browser/chromeos/app_mode/kiosk_external_updater.h
|
| @@ -5,11 +5,11 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_EXTERNAL_UPDATER_H_
|
| #define CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_EXTERNAL_UPDATER_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/files/file_path.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/observer_list.h"
|
| #include "base/sequenced_task_runner.h"
|
| @@ -142,7 +142,7 @@ class KioskExternalUpdater : public disks::DiskMountManager::Observer,
|
| // map of app_id: ExternalUpdate
|
| typedef std::map<std::string, ExternalUpdate> ExternalUpdateMap;
|
| ExternalUpdateMap external_updates_;
|
| - scoped_ptr<KioskExternalUpdateNotification> notification_;
|
| + std::unique_ptr<KioskExternalUpdateNotification> notification_;
|
|
|
| base::WeakPtrFactory<KioskExternalUpdater> weak_factory_;
|
|
|
|
|