blob: a8bffe8b1858e91a7befb0474de8d50af38535c5 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/test/cursor_manager_test_api.h"
#include "ash/shell.h"
#include "ash/test/shell_test_api.h"
#include "ash/wm/ash_native_cursor_manager.h"
#include "ui/base/cursor/image_cursors.h"
#include "ui/gfx/display.h"
#include "ui/wm/core/cursor_manager.h"
namespace ash {
namespace test {
CursorManagerTestApi::CursorManagerTestApi(
wm::CursorManager* cursor_manager)
: cursor_manager_(cursor_manager) {
}
CursorManagerTestApi::~CursorManagerTestApi() {
}
// TODO(tdanderson): CursorManagerTestApi may no longer be needed.
ui::CursorSetType CursorManagerTestApi::GetCurrentCursorSet() const {
return cursor_manager_->GetCursorSet();
}
gfx::NativeCursor CursorManagerTestApi::GetCurrentCursor() const {
return cursor_manager_->GetCursor();
}
gfx::Display::Rotation
CursorManagerTestApi::GetCurrentCursorRotation() const {
return ShellTestApi(Shell::GetInstance()).ash_native_cursor_manager()->
image_cursors_->GetRotation();
}
float
CursorManagerTestApi::GetCurrentCursorScale() const {
return ShellTestApi(Shell::GetInstance()).ash_native_cursor_manager()->
image_cursors_->GetScale();
}
} // namespace test
} // namespace ash