Index: ui/views/controls/button/custom_button.h |
diff --git a/ui/views/controls/button/custom_button.h b/ui/views/controls/button/custom_button.h |
index 05840e0b2dd7a2463c78a0f35a1605990b89e43f..d3fbdfa214a281ce7862cf758ce6caee1f7f5c98 100644 |
--- a/ui/views/controls/button/custom_button.h |
+++ b/ui/views/controls/button/custom_button.h |
@@ -5,8 +5,9 @@ |
#ifndef UI_VIEWS_CONTROLS_BUTTON_CUSTOM_BUTTON_H_ |
#define UI_VIEWS_CONTROLS_BUTTON_CUSTOM_BUTTON_H_ |
+#include <memory> |
+ |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
#include "ui/events/event_constants.h" |
#include "ui/gfx/animation/animation_delegate.h" |
#include "ui/gfx/animation/throb_animation.h" |
@@ -100,7 +101,7 @@ class VIEWS_EXPORT CustomButton : public Button, public gfx::AnimationDelegate { |
void OnDragDone() override; |
void GetAccessibleState(ui::AXViewState* state) override; |
void VisibilityChanged(View* starting_from, bool is_visible) override; |
- scoped_ptr<InkDropHover> CreateInkDropHover() const override; |
+ std::unique_ptr<InkDropHover> CreateInkDropHover() const override; |
SkColor GetInkDropBaseColor() const override; |
// Overridden from gfx::AnimationDelegate: |