OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_COMMON_WM_SHELL_H_ | 5 #ifndef ASH_COMMON_WM_SHELL_H_ |
6 #define ASH_COMMON_WM_SHELL_H_ | 6 #define ASH_COMMON_WM_SHELL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "ash/ash_export.h" | 13 #include "ash/ash_export.h" |
14 #include "ash/common/metrics/gesture_action_type.h" | |
15 #include "ash/common/metrics/user_metrics_action.h" | |
16 #include "ash/common/session/session_state_observer.h" | 14 #include "ash/common/session/session_state_observer.h" |
17 #include "ash/common/wm/lock_state_observer.h" | 15 #include "ash/metrics/gesture_action_type.h" |
| 16 #include "ash/metrics/user_metrics_action.h" |
| 17 #include "ash/wm/lock_state_observer.h" |
18 #include "base/observer_list.h" | 18 #include "base/observer_list.h" |
19 #include "components/ui_devtools/devtools_server.h" | 19 #include "components/ui_devtools/devtools_server.h" |
20 #include "ui/base/ui_base_types.h" | 20 #include "ui/base/ui_base_types.h" |
21 #include "ui/compositor/layer_type.h" | 21 #include "ui/compositor/layer_type.h" |
22 #include "ui/wm/public/activation_change_observer.h" | 22 #include "ui/wm/public/activation_change_observer.h" |
23 #include "ui/wm/public/window_types.h" | 23 #include "ui/wm/public/window_types.h" |
24 | 24 |
25 namespace app_list { | 25 namespace app_list { |
26 class AppList; | 26 class AppList; |
27 } | 27 } |
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
551 | 551 |
552 bool added_activation_observer_ = false; | 552 bool added_activation_observer_ = false; |
553 base::ObserverList<WmActivationObserver> activation_observers_; | 553 base::ObserverList<WmActivationObserver> activation_observers_; |
554 | 554 |
555 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; | 555 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; |
556 }; | 556 }; |
557 | 557 |
558 } // namespace ash | 558 } // namespace ash |
559 | 559 |
560 #endif // ASH_COMMON_WM_SHELL_H_ | 560 #endif // ASH_COMMON_WM_SHELL_H_ |
OLD | NEW |