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

Side by Side Diff: ash/shell.h

Issue 1153633006: Added UMA statistics for changing the active window via click or touch events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months 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
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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 } 62 }
63 } 63 }
64 64
65 namespace wm { 65 namespace wm {
66 class AcceleratorFilter; 66 class AcceleratorFilter;
67 class CompoundEventFilter; 67 class CompoundEventFilter;
68 class InputMethodEventFilter; 68 class InputMethodEventFilter;
69 class NestedAcceleratorController; 69 class NestedAcceleratorController;
70 class ShadowController; 70 class ShadowController;
71 class VisibilityController; 71 class VisibilityController;
72 class WindowActivationPreTargetHandler;
72 class WindowModalityController; 73 class WindowModalityController;
73 } 74 }
74 75
75 namespace ash { 76 namespace ash {
76 77
77 class AcceleratorController; 78 class AcceleratorController;
78 class AccessibilityDelegate; 79 class AccessibilityDelegate;
79 class AppListController; 80 class AppListController;
80 class AshNativeCursorManager; 81 class AshNativeCursorManager;
81 class AutoclickController; 82 class AutoclickController;
(...skipping 30 matching lines...) Expand all
112 class PartialMagnificationController; 113 class PartialMagnificationController;
113 class PartialScreenshotController; 114 class PartialScreenshotController;
114 class PowerButtonController; 115 class PowerButtonController;
115 class PowerEventObserver; 116 class PowerEventObserver;
116 class ProjectingObserver; 117 class ProjectingObserver;
117 class ResizeShadowController; 118 class ResizeShadowController;
118 class ResolutionNotificationController; 119 class ResolutionNotificationController;
119 class RootWindowController; 120 class RootWindowController;
120 class ScopedTargetRootWindow; 121 class ScopedTargetRootWindow;
121 class ScreenAsh; 122 class ScreenAsh;
123 class ScreenEventTaskSwitchMetricRecorder;
122 class ScreenOrientationController; 124 class ScreenOrientationController;
123 class ScreenPositionController; 125 class ScreenPositionController;
124 class SessionStateDelegate; 126 class SessionStateDelegate;
125 class Shelf; 127 class Shelf;
126 class ShelfDelegate; 128 class ShelfDelegate;
127 class ShelfItemDelegateManager; 129 class ShelfItemDelegateManager;
128 class ShelfModel; 130 class ShelfModel;
129 class ShelfWindowWatcher; 131 class ShelfWindowWatcher;
130 class ShellDelegate; 132 class ShellDelegate;
131 struct ShellInitParams; 133 struct ShellInitParams;
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 scoped_ptr<ui::UserActivityDetector> user_activity_detector_; 673 scoped_ptr<ui::UserActivityDetector> user_activity_detector_;
672 scoped_ptr<VideoDetector> video_detector_; 674 scoped_ptr<VideoDetector> video_detector_;
673 scoped_ptr<WindowCycleController> window_cycle_controller_; 675 scoped_ptr<WindowCycleController> window_cycle_controller_;
674 scoped_ptr<WindowSelectorController> window_selector_controller_; 676 scoped_ptr<WindowSelectorController> window_selector_controller_;
675 scoped_ptr<FocusCycler> focus_cycler_; 677 scoped_ptr<FocusCycler> focus_cycler_;
676 scoped_ptr<DisplayController> display_controller_; 678 scoped_ptr<DisplayController> display_controller_;
677 scoped_ptr<HighContrastController> high_contrast_controller_; 679 scoped_ptr<HighContrastController> high_contrast_controller_;
678 scoped_ptr<MagnificationController> magnification_controller_; 680 scoped_ptr<MagnificationController> magnification_controller_;
679 scoped_ptr<PartialMagnificationController> partial_magnification_controller_; 681 scoped_ptr<PartialMagnificationController> partial_magnification_controller_;
680 scoped_ptr<AutoclickController> autoclick_controller_; 682 scoped_ptr<AutoclickController> autoclick_controller_;
683 scoped_ptr<::wm::WindowActivationPreTargetHandler>
684 window_activation_pretarget_handler_;
685 scoped_ptr<ScreenEventTaskSwitchMetricRecorder>
686 screen_event_task_switch_metric_recorder_;
681 scoped_ptr<aura::client::FocusClient> focus_client_; 687 scoped_ptr<aura::client::FocusClient> focus_client_;
682 aura::client::ActivationClient* activation_client_; 688 aura::client::ActivationClient* activation_client_;
683 scoped_ptr<PartialScreenshotController> partial_screenshot_controller_; 689 scoped_ptr<PartialScreenshotController> partial_screenshot_controller_;
684 690
685 scoped_ptr<MouseCursorEventFilter> mouse_cursor_filter_; 691 scoped_ptr<MouseCursorEventFilter> mouse_cursor_filter_;
686 scoped_ptr<ScreenPositionController> screen_position_controller_; 692 scoped_ptr<ScreenPositionController> screen_position_controller_;
687 scoped_ptr<SystemModalContainerEventFilter> modality_filter_; 693 scoped_ptr<SystemModalContainerEventFilter> modality_filter_;
688 scoped_ptr<EventClientImpl> event_client_; 694 scoped_ptr<EventClientImpl> event_client_;
689 scoped_ptr<EventTransformationHandler> event_transformation_handler_; 695 scoped_ptr<EventTransformationHandler> event_transformation_handler_;
690 696
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 772
767 // Injected content::GPUDataManager support. 773 // Injected content::GPUDataManager support.
768 scoped_ptr<GPUSupport> gpu_support_; 774 scoped_ptr<GPUSupport> gpu_support_;
769 775
770 DISALLOW_COPY_AND_ASSIGN(Shell); 776 DISALLOW_COPY_AND_ASSIGN(Shell);
771 }; 777 };
772 778
773 } // namespace ash 779 } // namespace ash
774 780
775 #endif // ASH_SHELL_H_ 781 #endif // ASH_SHELL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698