summaryrefslogtreecommitdiffstats
path: root/ash/test/cursor_manager_test_api.cc
blob: bd24b0db57c06272580331a3b9ebe83db3e993f5 (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() const {
  return cursor_manager_->GetCurrentCursor();
}

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

}  // namespace test
}  // namespace ash