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

Side by Side Diff: ash/shell.h

Issue 11421194: Hook up the FocusController behind a flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | ash/shell.cc » ('j') | ash/shell.cc » ('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 <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 12 matching lines...) Expand all
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | ash/shell.cc » ('j') | ash/shell.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698