| Index: ash/wm/cursor_manager.cc
|
| diff --git a/ui/aura/cursor_manager.cc b/ash/wm/cursor_manager.cc
|
| similarity index 87%
|
| rename from ui/aura/cursor_manager.cc
|
| rename to ash/wm/cursor_manager.cc
|
| index 30c7af1c2891ca14a133e168b2538cdb67481452..bb756182f38bce95bf48266cd0acd67aac0bcd75 100644
|
| --- a/ui/aura/cursor_manager.cc
|
| +++ b/ash/wm/cursor_manager.cc
|
| @@ -2,13 +2,13 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "ui/aura/cursor_manager.h"
|
| +#include "ash/wm/cursor_manager.h"
|
|
|
| +#include "ash/wm/cursor_delegate.h"
|
| #include "base/logging.h"
|
| -#include "ui/aura/cursor_delegate.h"
|
| #include "ui/aura/env.h"
|
|
|
| -namespace aura {
|
| +namespace ash {
|
|
|
| CursorManager::CursorManager()
|
| : delegate_(NULL),
|
| @@ -55,4 +55,8 @@ void CursorManager::ShowCursor(bool show) {
|
| delegate_->ShowCursor(show);
|
| }
|
|
|
| -} // namespace aura
|
| +bool CursorManager::GetVisible() const {
|
| + return cursor_visible_;
|
| +}
|
| +
|
| +} // namespace ash
|
|
|