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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 } | 394 } |
395 ScreenshotController* screenshot_controller() { | 395 ScreenshotController* screenshot_controller() { |
396 return screenshot_controller_.get(); | 396 return screenshot_controller_.get(); |
397 } | 397 } |
398 MouseCursorEventFilter* mouse_cursor_filter() { | 398 MouseCursorEventFilter* mouse_cursor_filter() { |
399 return mouse_cursor_filter_.get(); | 399 return mouse_cursor_filter_.get(); |
400 } | 400 } |
401 EventTransformationHandler* event_transformation_handler() { | 401 EventTransformationHandler* event_transformation_handler() { |
402 return event_transformation_handler_.get(); | 402 return event_transformation_handler_.get(); |
403 } | 403 } |
| 404 AshNativeCursorManager* native_cursor_manager() { |
| 405 return native_cursor_manager_; |
| 406 } |
404 ::wm::CursorManager* cursor_manager() { return cursor_manager_.get(); } | 407 ::wm::CursorManager* cursor_manager() { return cursor_manager_.get(); } |
405 | 408 |
406 SessionStateDelegate* session_state_delegate() { | 409 SessionStateDelegate* session_state_delegate() { |
407 return session_state_delegate_.get(); | 410 return session_state_delegate_.get(); |
408 } | 411 } |
409 | 412 |
410 HighContrastController* high_contrast_controller() { | 413 HighContrastController* high_contrast_controller() { |
411 return high_contrast_controller_.get(); | 414 return high_contrast_controller_.get(); |
412 } | 415 } |
413 | 416 |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
807 base::ObserverList<ShellObserver> shell_observers_; | 810 base::ObserverList<ShellObserver> shell_observers_; |
808 | 811 |
809 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; | 812 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; |
810 | 813 |
811 DISALLOW_COPY_AND_ASSIGN(Shell); | 814 DISALLOW_COPY_AND_ASSIGN(Shell); |
812 }; | 815 }; |
813 | 816 |
814 } // namespace ash | 817 } // namespace ash |
815 | 818 |
816 #endif // ASH_SHELL_H_ | 819 #endif // ASH_SHELL_H_ |
OLD | NEW |