| Index: ash/shelf/shelf_widget.h
|
| diff --git a/ash/shelf/shelf_widget.h b/ash/shelf/shelf_widget.h
|
| index ddaa2bc5a653b78afab34f9fe83a16aab4da288e..3a0d8ff4513f1373ae2a0b405c860b535ee81756 100644
|
| --- a/ash/shelf/shelf_widget.h
|
| +++ b/ash/shelf/shelf_widget.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef ASH_SHELF_SHELF_WIDGET_H_
|
| #define ASH_SHELF_SHELF_WIDGET_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "ash/ash_export.h"
|
| #include "ash/shelf/background_animator.h"
|
| #include "ash/shelf/shelf_layout_manager_observer.h"
|
| @@ -100,7 +102,7 @@ class ASH_EXPORT ShelfWidget : public views::Widget,
|
| class DelegateView;
|
|
|
| ShelfLayoutManager* shelf_layout_manager_;
|
| - scoped_ptr<Shelf> shelf_;
|
| + std::unique_ptr<Shelf> shelf_;
|
| StatusAreaWidget* status_area_widget_;
|
|
|
| // delegate_view_ is attached to window_container_ and is cleaned up
|
|
|