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

Side by Side Diff: ui/aura_shell/shell.h

Issue 8926004: Revert 114095 - Move the concept of Activation to the Shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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 | « ui/aura_shell/shadow_controller.cc ('k') | ui/aura_shell/shell.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:mergeinfo
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 UI_AURA_SHELL_SHELL_H_ 5 #ifndef UI_AURA_SHELL_SHELL_H_
6 #define UI_AURA_SHELL_SHELL_H_ 6 #define UI_AURA_SHELL_SHELL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 14 matching lines...) Expand all
25 } 25 }
26 26
27 namespace aura_shell { 27 namespace aura_shell {
28 28
29 class Launcher; 29 class Launcher;
30 class ShellAcceleratorController; 30 class ShellAcceleratorController;
31 class ShellDelegate; 31 class ShellDelegate;
32 class ShellTooltipManager; 32 class ShellTooltipManager;
33 33
34 namespace internal { 34 namespace internal {
35 class ActivationController;
36 class AppList; 35 class AppList;
37 class DragDropController; 36 class DragDropController;
38 class ShadowController; 37 class ShadowController;
39 class ShellAcceleratorFilter; 38 class ShellAcceleratorFilter;
40 class WorkspaceController; 39 class WorkspaceController;
41 } 40 }
42 41
43 // Shell is a singleton object that presents the Shell API and implements the 42 // Shell is a singleton object that presents the Shell API and implements the
44 // RootWindow's delegate interface. 43 // RootWindow's delegate interface.
45 class AURA_SHELL_EXPORT Shell { 44 class AURA_SHELL_EXPORT Shell {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 base::WeakPtrFactory<Shell> method_factory_; 102 base::WeakPtrFactory<Shell> method_factory_;
104 103
105 scoped_ptr<ShellAcceleratorController> accelerator_controller_; 104 scoped_ptr<ShellAcceleratorController> accelerator_controller_;
106 105
107 scoped_ptr<ShellDelegate> delegate_; 106 scoped_ptr<ShellDelegate> delegate_;
108 107
109 scoped_ptr<Launcher> launcher_; 108 scoped_ptr<Launcher> launcher_;
110 109
111 scoped_ptr<internal::AppList> app_list_; 110 scoped_ptr<internal::AppList> app_list_;
112 111
113 scoped_ptr<internal::ActivationController> activation_controller_;
114 scoped_ptr<internal::DragDropController> drag_drop_controller_; 112 scoped_ptr<internal::DragDropController> drag_drop_controller_;
115 scoped_ptr<internal::WorkspaceController> workspace_controller_; 113 scoped_ptr<internal::WorkspaceController> workspace_controller_;
116 scoped_ptr<internal::ShadowController> shadow_controller_; 114 scoped_ptr<internal::ShadowController> shadow_controller_;
117 115
118 // An event filter that pre-handles global accelerators. 116 // An event filter that pre-handles global accelerators.
119 scoped_ptr<internal::ShellAcceleratorFilter> accelerator_filter_; 117 scoped_ptr<internal::ShellAcceleratorFilter> accelerator_filter_;
120 118
121 scoped_ptr<ShellTooltipManager> tooltip_manager_; 119 scoped_ptr<ShellTooltipManager> tooltip_manager_;
122 120
123 DISALLOW_COPY_AND_ASSIGN(Shell); 121 DISALLOW_COPY_AND_ASSIGN(Shell);
124 }; 122 };
125 123
126 } // namespace aura_shell 124 } // namespace aura_shell
127 125
128 #endif // UI_AURA_SHELL_SHELL_H_ 126 #endif // UI_AURA_SHELL_SHELL_H_
OLDNEW
« no previous file with comments | « ui/aura_shell/shadow_controller.cc ('k') | ui/aura_shell/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698