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

Unified Diff: ash/display/display_controller.h

Issue 145313003: Implement cursor compositing mode on Ash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Get rid changes in ui/views/. Let Shell call AshNativeCursorManager directly. Created 6 years, 10 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/display/cursor_window_controller.cc ('k') | ash/display/display_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/display/display_controller.h
diff --git a/ash/display/display_controller.h b/ash/display/display_controller.h
index 839e70b5651c97dbc7bc0f3f988529f5027f8c24..c44ccd1ad70ea82ac5415607e1b7bdaf0cf6f5dc 100644
--- a/ash/display/display_controller.h
+++ b/ash/display/display_controller.h
@@ -38,6 +38,7 @@ class Insets;
namespace ash {
namespace internal {
+class CursorWindowController;
class DisplayInfo;
class DisplayManager;
class FocusActivationStore;
@@ -76,6 +77,10 @@ class ASH_EXPORT DisplayController : public gfx::DisplayObserver,
// TODO(oshima): Move this out from DisplayController;
static int64 GetPrimaryDisplayId();
+ internal::CursorWindowController* cursor_window_controller() {
+ return cursor_window_controller_.get();
+ }
+
internal::MirrorWindowController* mirror_window_controller() {
return mirror_window_controller_.get();
}
@@ -199,6 +204,7 @@ class ASH_EXPORT DisplayController : public gfx::DisplayObserver,
scoped_ptr<internal::FocusActivationStore> focus_activation_store_;
+ scoped_ptr<internal::CursorWindowController> cursor_window_controller_;
scoped_ptr<internal::MirrorWindowController> mirror_window_controller_;
scoped_ptr<internal::VirtualKeyboardWindowController>
virtual_keyboard_window_controller_;
« no previous file with comments | « ash/display/cursor_window_controller.cc ('k') | ash/display/display_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698