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 <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "ui/gfx/screen.h" | 23 #include "ui/gfx/screen.h" |
24 #include "ui/gfx/size.h" | 24 #include "ui/gfx/size.h" |
25 | 25 |
26 class CommandLine; | 26 class CommandLine; |
27 | 27 |
28 namespace aura { | 28 namespace aura { |
29 class EventFilter; | 29 class EventFilter; |
30 class RootWindow; | 30 class RootWindow; |
31 class Window; | 31 class Window; |
32 namespace client { | 32 namespace client { |
| 33 class ActivationClient; |
33 class FocusClient; | 34 class FocusClient; |
34 class StackingClient; | 35 class StackingClient; |
35 class UserActionClient; | 36 class UserActionClient; |
36 } | 37 } |
37 } | 38 } |
38 namespace chromeos { | 39 namespace chromeos { |
39 class OutputConfigurator; | 40 class OutputConfigurator; |
40 } | 41 } |
41 namespace content { | 42 namespace content { |
42 class BrowserContext; | 43 class BrowserContext; |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 scoped_ptr<UserActivityDetector> user_activity_detector_; | 502 scoped_ptr<UserActivityDetector> user_activity_detector_; |
502 scoped_ptr<VideoDetector> video_detector_; | 503 scoped_ptr<VideoDetector> video_detector_; |
503 scoped_ptr<WindowCycleController> window_cycle_controller_; | 504 scoped_ptr<WindowCycleController> window_cycle_controller_; |
504 scoped_ptr<internal::FocusCycler> focus_cycler_; | 505 scoped_ptr<internal::FocusCycler> focus_cycler_; |
505 scoped_ptr<DisplayController> display_controller_; | 506 scoped_ptr<DisplayController> display_controller_; |
506 scoped_ptr<HighContrastController> high_contrast_controller_; | 507 scoped_ptr<HighContrastController> high_contrast_controller_; |
507 scoped_ptr<MagnificationController> magnification_controller_; | 508 scoped_ptr<MagnificationController> magnification_controller_; |
508 scoped_ptr<PartialMagnificationController> partial_magnification_controller_; | 509 scoped_ptr<PartialMagnificationController> partial_magnification_controller_; |
509 scoped_ptr<aura::client::FocusClient> focus_client_; | 510 scoped_ptr<aura::client::FocusClient> focus_client_; |
510 scoped_ptr<aura::client::UserActionClient> user_action_client_; | 511 scoped_ptr<aura::client::UserActionClient> user_action_client_; |
| 512 aura::client::ActivationClient* activation_client_; |
511 scoped_ptr<internal::MouseCursorEventFilter> mouse_cursor_filter_; | 513 scoped_ptr<internal::MouseCursorEventFilter> mouse_cursor_filter_; |
512 scoped_ptr<internal::ScreenPositionController> screen_position_controller_; | 514 scoped_ptr<internal::ScreenPositionController> screen_position_controller_; |
513 scoped_ptr<internal::SystemModalContainerEventFilter> modality_filter_; | 515 scoped_ptr<internal::SystemModalContainerEventFilter> modality_filter_; |
514 scoped_ptr<internal::EventClientImpl> event_client_; | 516 scoped_ptr<internal::EventClientImpl> event_client_; |
515 | 517 |
516 // An event filter that rewrites or drops an event. | 518 // An event filter that rewrites or drops an event. |
517 scoped_ptr<internal::EventRewriterEventFilter> event_rewriter_filter_; | 519 scoped_ptr<internal::EventRewriterEventFilter> event_rewriter_filter_; |
518 | 520 |
519 // An event filter that pre-handles key events while the partial | 521 // An event filter that pre-handles key events while the partial |
520 // screenshot UI or the keyboard overlay is active. | 522 // screenshot UI or the keyboard overlay is active. |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 | 558 |
557 // For testing only: simulate that a modal window is open | 559 // For testing only: simulate that a modal window is open |
558 bool simulate_modal_window_open_for_testing_; | 560 bool simulate_modal_window_open_for_testing_; |
559 | 561 |
560 DISALLOW_COPY_AND_ASSIGN(Shell); | 562 DISALLOW_COPY_AND_ASSIGN(Shell); |
561 }; | 563 }; |
562 | 564 |
563 } // namespace ash | 565 } // namespace ash |
564 | 566 |
565 #endif // ASH_SHELL_H_ | 567 #endif // ASH_SHELL_H_ |
OLD | NEW |