blob: f5b033dd3a87611afb0c3d44bb9b7da46a376a4d [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/display/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();
}
display::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