Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(722)

Side by Side Diff: ui/views/widget/desktop_aura/desktop_cursor_loader_updater.h

Issue 111043002: Cursor state should be global for desktop Aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't copy set of root windows before iterating Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | ui/views/widget/desktop_aura/desktop_cursor_loader_updater_auralinux.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_CURSOR_LOADER_UPDATER_H_ 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_CURSOR_LOADER_UPDATER_H_
6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_CURSOR_LOADER_UPDATER_H_ 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_CURSOR_LOADER_UPDATER_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "ui/views/views_export.h" 9 #include "ui/views/views_export.h"
10 10
(...skipping 15 matching lines...) Expand all
26 // desktop AuraX11. 26 // desktop AuraX11.
27 class VIEWS_EXPORT DesktopCursorLoaderUpdater { 27 class VIEWS_EXPORT DesktopCursorLoaderUpdater {
28 public: 28 public:
29 virtual ~DesktopCursorLoaderUpdater() {} 29 virtual ~DesktopCursorLoaderUpdater() {}
30 30
31 // Creates a new DesktopCursorLoaderUpdater, or NULL if the platform doesn't 31 // Creates a new DesktopCursorLoaderUpdater, or NULL if the platform doesn't
32 // support one. 32 // support one.
33 static scoped_ptr<DesktopCursorLoaderUpdater> Create(); 33 static scoped_ptr<DesktopCursorLoaderUpdater> Create();
34 34
35 // Called when a CursorLoader is created. 35 // Called when a CursorLoader is created.
36 virtual void OnCreate(aura::RootWindow* window, 36 virtual void OnCreate(float device_scale_factor,
37 ui::CursorLoader* loader) = 0; 37 ui::CursorLoader* loader) = 0;
38 38
39 // Called when the display has changed (as we may need to reload the cursor 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). 40 // assets in response to a device scale factor or rotation change).
41 virtual void OnDisplayUpdated(const gfx::Display& display, 41 virtual void OnDisplayUpdated(const gfx::Display& display,
42 ui::CursorLoader* loader) = 0; 42 ui::CursorLoader* loader) = 0;
43 }; 43 };
44 44
45 } // namespace views 45 } // namespace views
46 46
47 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DISPLAY_CHANGE_HANDLER_H_ 47 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DISPLAY_CHANGE_HANDLER_H_
OLDNEW
« no previous file with comments | « no previous file | ui/views/widget/desktop_aura/desktop_cursor_loader_updater_auralinux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698