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

Side by Side Diff: ash/shell.h

Issue 9033007: Rename the aura_shell namespace to ash (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
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 ASH_SHELL_H_ 5 #ifndef ASH_SHELL_H_
6 #define ASH_SHELL_H_ 6 #define ASH_SHELL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 11 matching lines...) Expand all
22 namespace aura { 22 namespace aura {
23 class EventFilter; 23 class EventFilter;
24 class RootWindow; 24 class RootWindow;
25 class Window; 25 class Window;
26 } 26 }
27 namespace gfx { 27 namespace gfx {
28 class Rect; 28 class Rect;
29 class Size; 29 class Size;
30 } 30 }
31 31
32 namespace aura_shell { 32 namespace ash {
33 33
34 class AcceleratorController; 34 class AcceleratorController;
35 class Launcher; 35 class Launcher;
36 class ShellDelegate; 36 class ShellDelegate;
37 37
38 namespace internal { 38 namespace internal {
39 class ActivationController; 39 class ActivationController;
40 class AcceleratorFilter; 40 class AcceleratorFilter;
41 class AppList; 41 class AppList;
42 class DragDropController; 42 class DragDropController;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 scoped_ptr<internal::ShadowController> shadow_controller_; 137 scoped_ptr<internal::ShadowController> shadow_controller_;
138 scoped_ptr<internal::TooltipController> tooltip_controller_; 138 scoped_ptr<internal::TooltipController> tooltip_controller_;
139 139
140 // An event filter that pre-handles global accelerators. 140 // An event filter that pre-handles global accelerators.
141 scoped_ptr<internal::AcceleratorFilter> accelerator_filter_; 141 scoped_ptr<internal::AcceleratorFilter> accelerator_filter_;
142 142
143 143
144 DISALLOW_COPY_AND_ASSIGN(Shell); 144 DISALLOW_COPY_AND_ASSIGN(Shell);
145 }; 145 };
146 146
147 } // namespace aura_shell 147 } // namespace ash
148 148
149 #endif // ASH_SHELL_H_ 149 #endif // ASH_SHELL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698