OLD | NEW |
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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 } | 403 } |
404 ScreenshotController* screenshot_controller() { | 404 ScreenshotController* screenshot_controller() { |
405 return screenshot_controller_.get(); | 405 return screenshot_controller_.get(); |
406 } | 406 } |
407 MouseCursorEventFilter* mouse_cursor_filter() { | 407 MouseCursorEventFilter* mouse_cursor_filter() { |
408 return mouse_cursor_filter_.get(); | 408 return mouse_cursor_filter_.get(); |
409 } | 409 } |
410 EventTransformationHandler* event_transformation_handler() { | 410 EventTransformationHandler* event_transformation_handler() { |
411 return event_transformation_handler_.get(); | 411 return event_transformation_handler_.get(); |
412 } | 412 } |
| 413 AshNativeCursorManager* native_cursor_manager() { |
| 414 return native_cursor_manager_; |
| 415 } |
413 ::wm::CursorManager* cursor_manager() { return cursor_manager_.get(); } | 416 ::wm::CursorManager* cursor_manager() { return cursor_manager_.get(); } |
414 | 417 |
415 SessionStateDelegate* session_state_delegate() { | 418 SessionStateDelegate* session_state_delegate() { |
416 return session_state_delegate_.get(); | 419 return session_state_delegate_.get(); |
417 } | 420 } |
418 | 421 |
419 HighContrastController* high_contrast_controller() { | 422 HighContrastController* high_contrast_controller() { |
420 return high_contrast_controller_.get(); | 423 return high_contrast_controller_.get(); |
421 } | 424 } |
422 | 425 |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
811 base::ObserverList<ShellObserver> shell_observers_; | 814 base::ObserverList<ShellObserver> shell_observers_; |
812 | 815 |
813 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; | 816 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; |
814 | 817 |
815 DISALLOW_COPY_AND_ASSIGN(Shell); | 818 DISALLOW_COPY_AND_ASSIGN(Shell); |
816 }; | 819 }; |
817 | 820 |
818 } // namespace ash | 821 } // namespace ash |
819 | 822 |
820 #endif // ASH_SHELL_H_ | 823 #endif // ASH_SHELL_H_ |
OLD | NEW |