| 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 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 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/metrics/user_metrics_recorder.h" | 13 #include "ash/metrics/user_metrics_recorder.h" |
| 14 #include "ash/public/cpp/shelf_types.h" | 14 #include "ash/public/cpp/shelf_types.h" |
| 15 #include "ash/session/session_observer.h" | 15 #include "ash/session/session_observer.h" |
| 16 #include "ash/wm/cursor_manager_chromeos.h" | |
| 17 #include "ash/wm/system_modal_container_event_filter_delegate.h" | 16 #include "ash/wm/system_modal_container_event_filter_delegate.h" |
| 18 #include "base/gtest_prod_util.h" | 17 #include "base/gtest_prod_util.h" |
| 19 #include "base/macros.h" | 18 #include "base/macros.h" |
| 20 #include "base/memory/weak_ptr.h" | 19 #include "base/memory/weak_ptr.h" |
| 21 #include "base/observer_list.h" | 20 #include "base/observer_list.h" |
| 22 #include "ui/aura/window.h" | 21 #include "ui/aura/window.h" |
| 23 #include "ui/display/screen.h" | 22 #include "ui/display/screen.h" |
| 24 #include "ui/events/event_target.h" | 23 #include "ui/events/event_target.h" |
| 25 #include "ui/wm/core/cursor_manager.h" | 24 #include "ui/wm/core/cursor_manager.h" |
| 26 #include "ui/wm/public/activation_change_observer.h" | 25 #include "ui/wm/public/activation_change_observer.h" |
| 27 | 26 |
| 27 #if defined(OS_CHROMEOS) |
| 28 #include "ash/wm/cursor_manager_chromeos.h" |
| 29 #endif // defined(OS_CHROMEOS) |
| 30 |
| 28 class PrefService; | 31 class PrefService; |
| 29 | 32 |
| 30 namespace aura { | 33 namespace aura { |
| 31 class RootWindow; | 34 class RootWindow; |
| 32 class UserActivityForwarder; | 35 class UserActivityForwarder; |
| 33 class Window; | 36 class Window; |
| 34 class WindowManagerClient; | 37 class WindowManagerClient; |
| 35 class WindowTreeClient; | 38 class WindowTreeClient; |
| 36 namespace client { | 39 namespace client { |
| 37 class ActivationClient; | 40 class ActivationClient; |
| (...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 base::ObserverList<ShellObserver> shell_observers_; | 812 base::ObserverList<ShellObserver> shell_observers_; |
| 810 | 813 |
| 811 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; | 814 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; |
| 812 | 815 |
| 813 DISALLOW_COPY_AND_ASSIGN(Shell); | 816 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 814 }; | 817 }; |
| 815 | 818 |
| 816 } // namespace ash | 819 } // namespace ash |
| 817 | 820 |
| 818 #endif // ASH_SHELL_H_ | 821 #endif // ASH_SHELL_H_ |
| OLD | NEW |