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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 } | 405 } |
406 ScreenshotController* screenshot_controller() { | 406 ScreenshotController* screenshot_controller() { |
407 return screenshot_controller_.get(); | 407 return screenshot_controller_.get(); |
408 } | 408 } |
409 MouseCursorEventFilter* mouse_cursor_filter() { | 409 MouseCursorEventFilter* mouse_cursor_filter() { |
410 return mouse_cursor_filter_.get(); | 410 return mouse_cursor_filter_.get(); |
411 } | 411 } |
412 EventTransformationHandler* event_transformation_handler() { | 412 EventTransformationHandler* event_transformation_handler() { |
413 return event_transformation_handler_.get(); | 413 return event_transformation_handler_.get(); |
414 } | 414 } |
| 415 AshNativeCursorManager* native_cursor_manager() { |
| 416 return native_cursor_manager_; |
| 417 } |
415 ::wm::CursorManager* cursor_manager() { return cursor_manager_.get(); } | 418 ::wm::CursorManager* cursor_manager() { return cursor_manager_.get(); } |
416 | 419 |
417 SessionStateDelegate* session_state_delegate() { | 420 SessionStateDelegate* session_state_delegate() { |
418 return session_state_delegate_.get(); | 421 return session_state_delegate_.get(); |
419 } | 422 } |
420 | 423 |
421 HighContrastController* high_contrast_controller() { | 424 HighContrastController* high_contrast_controller() { |
422 return high_contrast_controller_.get(); | 425 return high_contrast_controller_.get(); |
423 } | 426 } |
424 | 427 |
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
833 base::ObserverList<ShellObserver> shell_observers_; | 836 base::ObserverList<ShellObserver> shell_observers_; |
834 | 837 |
835 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; | 838 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; |
836 | 839 |
837 DISALLOW_COPY_AND_ASSIGN(Shell); | 840 DISALLOW_COPY_AND_ASSIGN(Shell); |
838 }; | 841 }; |
839 | 842 |
840 } // namespace ash | 843 } // namespace ash |
841 | 844 |
842 #endif // ASH_SHELL_H_ | 845 #endif // ASH_SHELL_H_ |
OLD | NEW |