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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <utility> | 9 #include <utility> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "ash/ash_export.h" | 12 #include "ash/ash_export.h" |
13 #include "ash/system/user/login_status.h" | 13 #include "ash/system/user/login_status.h" |
14 #include "ash/wm/shelf_auto_hide_behavior.h" | 14 #include "ash/wm/shelf_auto_hide_behavior.h" |
15 #include "base/basictypes.h" | 15 #include "base/basictypes.h" |
16 #include "base/compiler_specific.h" | 16 #include "base/compiler_specific.h" |
17 #include "base/gtest_prod_util.h" | 17 #include "base/gtest_prod_util.h" |
18 #include "base/memory/scoped_ptr.h" | 18 #include "base/memory/scoped_ptr.h" |
19 #include "base/observer_list.h" | 19 #include "base/observer_list.h" |
20 #include "ui/aura/cursor_delegate.h" | 20 #include "ui/aura/cursor_delegate.h" |
21 #include "ui/gfx/insets.h" | 21 #include "ui/gfx/insets.h" |
22 #include "ui/gfx/size.h" | 22 #include "ui/gfx/size.h" |
23 | 23 |
24 class CommandLine; | 24 class CommandLine; |
25 | 25 |
26 namespace aura { | 26 namespace aura { |
27 class EventFilter; | 27 class EventFilter; |
28 class FocusManager; | 28 class FocusManager; |
29 class Monitor; | |
30 class RootWindow; | 29 class RootWindow; |
31 class Window; | 30 class Window; |
32 namespace client { | 31 namespace client { |
33 class UserActionClient; | 32 class UserActionClient; |
34 } | 33 } |
35 namespace shared { | 34 namespace shared { |
36 class CompoundEventFilter; | 35 class CompoundEventFilter; |
37 class InputMethodEventFilter; | 36 class InputMethodEventFilter; |
38 } | 37 } |
39 } | 38 } |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 | 472 |
474 // Used by ash/shell. | 473 // Used by ash/shell. |
475 content::BrowserContext* browser_context_; | 474 content::BrowserContext* browser_context_; |
476 | 475 |
477 DISALLOW_COPY_AND_ASSIGN(Shell); | 476 DISALLOW_COPY_AND_ASSIGN(Shell); |
478 }; | 477 }; |
479 | 478 |
480 } // namespace ash | 479 } // namespace ash |
481 | 480 |
482 #endif // ASH_SHELL_H_ | 481 #endif // ASH_SHELL_H_ |
OLD | NEW |