| 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 "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/task.h" | |
| 17 #include "base/compiler_specific.h" | 16 #include "base/compiler_specific.h" |
| 18 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
| 19 | 18 |
| 20 class CommandLine; | 19 class CommandLine; |
| 21 | 20 |
| 22 namespace aura { | 21 namespace aura { |
| 23 class EventFilter; | 22 class EventFilter; |
| 24 class RootWindow; | 23 class RootWindow; |
| 25 class Window; | 24 class Window; |
| 26 } | 25 } |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 // The |window_mode_| never changes after the shell is initialized. | 161 // The |window_mode_| never changes after the shell is initialized. |
| 163 // Switching modes requires a restart. | 162 // Switching modes requires a restart. |
| 164 WindowMode window_mode_; | 163 WindowMode window_mode_; |
| 165 | 164 |
| 166 DISALLOW_COPY_AND_ASSIGN(Shell); | 165 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 167 }; | 166 }; |
| 168 | 167 |
| 169 } // namespace ash | 168 } // namespace ash |
| 170 | 169 |
| 171 #endif // ASH_SHELL_H_ | 170 #endif // ASH_SHELL_H_ |
| OLD | NEW |