| Index: mash/wm/frame/caption_buttons/frame_caption_button.h
|
| diff --git a/mash/wm/frame/caption_buttons/frame_caption_button.h b/mash/wm/frame/caption_buttons/frame_caption_button.h
|
| index 6708327507f24ea3716406831d619b6d8dd8d20d..9f816072431771c7a2e92a99d0ca0a7f36478ae7 100644
|
| --- a/mash/wm/frame/caption_buttons/frame_caption_button.h
|
| +++ b/mash/wm/frame/caption_buttons/frame_caption_button.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef MASH_WM_FRAME_CAPTION_BUTTONS_FRAME_CAPTION_BUTTON_H_
|
| #define MASH_WM_FRAME_CAPTION_BUTTONS_FRAME_CAPTION_BUTTON_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "mash/wm/frame/caption_buttons/caption_button_types.h"
|
| #include "ui/gfx/image/image_skia.h"
|
| #include "ui/views/controls/button/custom_button.h"
|
| @@ -91,7 +92,7 @@ class FrameCaptionButton : public views::CustomButton {
|
|
|
| // Crossfade animation started when the button's images are changed by
|
| // SetImages().
|
| - scoped_ptr<gfx::SlideAnimation> swap_images_animation_;
|
| + std::unique_ptr<gfx::SlideAnimation> swap_images_animation_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(FrameCaptionButton);
|
| };
|
|
|