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

Side by Side Diff: ash/shell.h

Issue 2780623002: exo: Fix multi-display hardware cursor (Closed)
Patch Set: Fix accessibility test Created 3 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | ash/wm/ash_native_cursor_manager.h » ('j') | ash/wm/ash_native_cursor_manager.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 ASH_SHELL_H_ 5 #ifndef ASH_SHELL_H_
6 #define ASH_SHELL_H_ 6 #define ASH_SHELL_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 } 407 }
408 ScreenshotController* screenshot_controller() { 408 ScreenshotController* screenshot_controller() {
409 return screenshot_controller_.get(); 409 return screenshot_controller_.get();
410 } 410 }
411 MouseCursorEventFilter* mouse_cursor_filter() { 411 MouseCursorEventFilter* mouse_cursor_filter() {
412 return mouse_cursor_filter_.get(); 412 return mouse_cursor_filter_.get();
413 } 413 }
414 EventTransformationHandler* event_transformation_handler() { 414 EventTransformationHandler* event_transformation_handler() {
415 return event_transformation_handler_.get(); 415 return event_transformation_handler_.get();
416 } 416 }
417 AshNativeCursorManager* native_cursor_manager() {
418 return native_cursor_manager_;
419 }
417 ::wm::CursorManager* cursor_manager() { return cursor_manager_.get(); } 420 ::wm::CursorManager* cursor_manager() { return cursor_manager_.get(); }
418 421
419 SessionStateDelegate* session_state_delegate() { 422 SessionStateDelegate* session_state_delegate() {
420 return session_state_delegate_.get(); 423 return session_state_delegate_.get();
421 } 424 }
422 425
423 HighContrastController* high_contrast_controller() { 426 HighContrastController* high_contrast_controller() {
424 return high_contrast_controller_.get(); 427 return high_contrast_controller_.get();
425 } 428 }
426 429
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 base::ObserverList<ShellObserver> shell_observers_; 837 base::ObserverList<ShellObserver> shell_observers_;
835 838
836 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; 839 scoped_refptr<base::SequencedWorkerPool> blocking_pool_;
837 840
838 DISALLOW_COPY_AND_ASSIGN(Shell); 841 DISALLOW_COPY_AND_ASSIGN(Shell);
839 }; 842 };
840 843
841 } // namespace ash 844 } // namespace ash
842 845
843 #endif // ASH_SHELL_H_ 846 #endif // ASH_SHELL_H_
OLDNEW
« no previous file with comments | « no previous file | ash/wm/ash_native_cursor_manager.h » ('j') | ash/wm/ash_native_cursor_manager.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698