Make castv2 performance test work.
[chromium-blink-merge.git] / ui / views / widget / desktop_aura / desktop_cursor_loader_updater.h
blobff116bc81a0269c7b4aca76135786c4891e70f20
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 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_CURSOR_LOADER_UPDATER_H_
6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_CURSOR_LOADER_UPDATER_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "ui/views/views_export.h"
11 namespace aura {
12 class RootWindow;
15 namespace gfx {
16 class Display;
19 namespace ui {
20 class CursorLoader;
23 namespace views {
25 // An interface to optionally update the state of a cursor loader. Only used on
26 // desktop AuraX11.
27 class VIEWS_EXPORT DesktopCursorLoaderUpdater {
28 public:
29 virtual ~DesktopCursorLoaderUpdater() {}
31 // Creates a new DesktopCursorLoaderUpdater, or NULL if the platform doesn't
32 // support one.
33 static scoped_ptr<DesktopCursorLoaderUpdater> Create();
35 // Called when a CursorLoader is created.
36 virtual void OnCreate(float device_scale_factor,
37 ui::CursorLoader* loader) = 0;
39 // Called when the display has changed (as we may need to reload the cursor
40 // assets in response to a device scale factor or rotation change).
41 virtual void OnDisplayUpdated(const gfx::Display& display,
42 ui::CursorLoader* loader) = 0;
45 } // namespace views
47 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DISPLAY_CHANGE_HANDLER_H_