| Index: ash/keyboard/keyboard_ui.cc
|
| diff --git a/ash/keyboard/keyboard_ui.cc b/ash/keyboard/keyboard_ui.cc
|
| index f760575f2bf7efe78ef9593e57344ea0e391d7ae..fb3cc15d0f0e2412a0ccf39e0ebe22d0e76a62bf 100644
|
| --- a/ash/keyboard/keyboard_ui.cc
|
| +++ b/ash/keyboard/keyboard_ui.cc
|
| @@ -9,6 +9,7 @@
|
| #include "ash/shell.h"
|
| #include "ash/system/tray/system_tray_notifier.h"
|
| #include "ash/system/tray_accessibility.h"
|
| +#include "base/memory/ptr_util.h"
|
| #include "ui/keyboard/keyboard_controller.h"
|
|
|
| namespace ash {
|
| @@ -51,8 +52,8 @@ class KeyboardUIImpl : public KeyboardUI, public AccessibilityObserver {
|
| KeyboardUI::~KeyboardUI() {}
|
|
|
| // static
|
| -scoped_ptr<KeyboardUI> KeyboardUI::Create() {
|
| - return make_scoped_ptr(new KeyboardUIImpl);
|
| +std::unique_ptr<KeyboardUI> KeyboardUI::Create() {
|
| + return base::WrapUnique(new KeyboardUIImpl);
|
| }
|
|
|
| void KeyboardUI::AddObserver(KeyboardUIObserver* observer) {
|
|
|