| Index: ash/wm/cursor_manager_chromeos.cc
|
| diff --git a/ash/wm/cursor_manager_chromeos.cc b/ash/wm/cursor_manager_chromeos.cc
|
| index 3a1162f9d05f600b1696065b342cf9624e503445..9835a083c1b33a29bbc2b22bcbe5ac350786b27c 100644
|
| --- a/ash/wm/cursor_manager_chromeos.cc
|
| +++ b/ash/wm/cursor_manager_chromeos.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "ash/wm/cursor_manager_chromeos.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/logging.h"
|
| #include "ui/events/event.h"
|
| #include "ui/keyboard/keyboard_util.h"
|
| @@ -12,10 +14,8 @@
|
|
|
| namespace ash {
|
|
|
| -CursorManager::CursorManager(
|
| - scoped_ptr< ::wm::NativeCursorManager> delegate)
|
| - : ::wm::CursorManager(delegate.Pass()) {
|
| -}
|
| +CursorManager::CursorManager(scoped_ptr<::wm::NativeCursorManager> delegate)
|
| + : ::wm::CursorManager(std::move(delegate)) {}
|
|
|
| CursorManager::~CursorManager() {
|
| }
|
|
|