OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_WM_MRU_WINDOW_TRACKER_H_ | 5 #ifndef ASH_WM_MRU_WINDOW_TRACKER_H_ |
6 #define ASH_WM_MRU_WINDOW_TRACKER_H_ | 6 #define ASH_WM_MRU_WINDOW_TRACKER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
12 #include "base/basictypes.h" | 12 #include "base/macros.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "ui/aura/window_observer.h" | 14 #include "ui/aura/window_observer.h" |
15 #include "ui/wm/public/activation_change_observer.h" | 15 #include "ui/wm/public/activation_change_observer.h" |
16 | 16 |
17 namespace aura { | 17 namespace aura { |
18 class RootWindow; | 18 class RootWindow; |
19 class Window; | 19 class Window; |
20 namespace client { | 20 namespace client { |
21 class ActivationClient; | 21 class ActivationClient; |
22 } | 22 } |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 wm::AshFocusRules* focus_rules_; // Not owned. | 86 wm::AshFocusRules* focus_rules_; // Not owned. |
87 | 87 |
88 bool ignore_window_activations_; | 88 bool ignore_window_activations_; |
89 | 89 |
90 DISALLOW_COPY_AND_ASSIGN(MruWindowTracker); | 90 DISALLOW_COPY_AND_ASSIGN(MruWindowTracker); |
91 }; | 91 }; |
92 | 92 |
93 } // namespace ash | 93 } // namespace ash |
94 | 94 |
95 #endif // ASH_WM_MRU_WINDOW_TRACKER_H_ | 95 #endif // ASH_WM_MRU_WINDOW_TRACKER_H_ |
OLD | NEW |