| Index: ash/accelerators/spoken_feedback_toggler.h
|
| diff --git a/ash/accelerators/spoken_feedback_toggler.h b/ash/accelerators/spoken_feedback_toggler.h
|
| index 5b2b7d0e2576f42f53b67138825aa0f92c2169e9..0a3b57ad947f246e09084d8249c42d91f419d85b 100644
|
| --- a/ash/accelerators/spoken_feedback_toggler.h
|
| +++ b/ash/accelerators/spoken_feedback_toggler.h
|
| @@ -5,10 +5,11 @@
|
| #ifndef ASH_ACCELERATORS_SPOKEN_FEEDBACK_TOGGLER_H_
|
| #define ASH_ACCELERATORS_SPOKEN_FEEDBACK_TOGGLER_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "ash/accelerators/key_hold_detector.h"
|
| #include "ash/ash_export.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "ui/events/event_handler.h"
|
|
|
| namespace ui {
|
| @@ -22,7 +23,7 @@ class ASH_EXPORT SpokenFeedbackToggler : public KeyHoldDetector::Delegate {
|
| public:
|
| static bool IsEnabled();
|
| static void SetEnabled(bool enabled);
|
| - static scoped_ptr<ui::EventHandler> CreateHandler();
|
| + static std::unique_ptr<ui::EventHandler> CreateHandler();
|
|
|
| // A scoped object to enable and disable the magnifier accelerator for test.
|
| class ScopedEnablerForTest {
|
|
|