cc: Fix logic for detecting when raster tasks were throttled
[chromium-blink-merge.git] / ash / test / mirror_window_test_api.cc
blobd8c7705f1bcaba7dec01ad434b4657451869eb5d
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ash/test/mirror_window_test_api.h"
7 #include "ash/display/display_controller.h"
8 #include "ash/display/mirror_window_controller.h"
9 #include "ash/shell.h"
10 #include "ui/aura/root_window_transformer.h"
11 #include "ui/gfx/point.h"
13 namespace ash {
14 namespace test {
16 const aura::RootWindow* MirrorWindowTestApi::GetRootWindow() const {
17 return Shell::GetInstance()->display_controller()->
18 mirror_window_controller()->root_window_.get();
21 int MirrorWindowTestApi::GetCurrentCursorType() const {
22 return Shell::GetInstance()->display_controller()->
23 mirror_window_controller()->current_cursor_type_;
26 const gfx::Point& MirrorWindowTestApi::GetCursorHotPoint() const {
27 return Shell::GetInstance()->display_controller()->
28 mirror_window_controller()->hot_point_;
31 const aura::Window* MirrorWindowTestApi::GetCursorWindow() const {
32 return Shell::GetInstance()->display_controller()->
33 mirror_window_controller()->cursor_window_;
36 scoped_ptr<aura::RootWindowTransformer>
37 MirrorWindowTestApi::CreateCurrentRootWindowTransformer() const {
38 return Shell::GetInstance()->display_controller()->
39 mirror_window_controller()->CreateRootWindowTransformer();
42 } // namespace test
43 } // namespace ash