| Index: ash/system/toast/toast_manager.h
|
| diff --git a/ash/system/toast/toast_manager.h b/ash/system/toast/toast_manager.h
|
| index 4e1fc80bad144ed1c1a547b7f2adca221a116132..d46832d383f7a2a6cc1809283b211b5f11b9f5bc 100644
|
| --- a/ash/system/toast/toast_manager.h
|
| +++ b/ash/system/toast/toast_manager.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef ASH_SYSTEM_TOAST_TOAST_MANAGER_H_
|
| #define ASH_SYSTEM_TOAST_TOAST_MANAGER_H_
|
|
|
| +#include <memory>
|
| #include <queue>
|
| #include <string>
|
|
|
| @@ -41,7 +42,7 @@ class ASH_EXPORT ToastManager : public ToastOverlay::Delegate {
|
|
|
| int toast_id_ = 0;
|
| std::queue<std::pair<std::string, uint64_t>> queue_;
|
| - scoped_ptr<ToastOverlay> overlay_;
|
| + std::unique_ptr<ToastOverlay> overlay_;
|
|
|
| base::WeakPtrFactory<ToastManager> weak_ptr_factory_;
|
|
|
|
|