summaryrefslogtreecommitdiffstats
path: root/ash/test/cursor_manager_test_api.cc
blob: e992f9ca016242fbc432c064f0e62eb9335ff8cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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/wm/cursor_manager.h"
#include "ash/wm/image_cursors.h"

namespace ash {
namespace test {

CursorManagerTestApi::CursorManagerTestApi(CursorManager* cursor_manager)
    : cursor_manager_(cursor_manager) {
}

CursorManagerTestApi::~CursorManagerTestApi() {
}

gfx::NativeCursor CursorManagerTestApi::GetCurrentCursor() {
  return cursor_manager_->current_cursor_;
}

float CursorManagerTestApi::GetDeviceScaleFactor() {
  return cursor_manager_->image_cursors_->GetDeviceScaleFactor();
}

}  // namespace test
}  // namespace ash