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_TEST_TEST_ACTIVATION_DELEGATE_H_ | 5 #ifndef ASH_TEST_TEST_ACTIVATION_DELEGATE_H_ |
6 #define ASH_TEST_TEST_ACTIVATION_DELEGATE_H_ | 6 #define ASH_TEST_TEST_ACTIVATION_DELEGATE_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/macros.h" |
10 #include "ui/events/event_handler.h" | 11 #include "ui/events/event_handler.h" |
11 #include "ui/wm/public/activation_change_observer.h" | 12 #include "ui/wm/public/activation_change_observer.h" |
12 #include "ui/wm/public/activation_delegate.h" | 13 #include "ui/wm/public/activation_delegate.h" |
13 | 14 |
14 namespace aura { | 15 namespace aura { |
15 class Window; | 16 class Window; |
16 } | 17 } |
17 | 18 |
18 namespace ash { | 19 namespace ash { |
19 namespace test { | 20 namespace test { |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 int lost_active_count_; | 57 int lost_active_count_; |
57 mutable int should_activate_count_; | 58 mutable int should_activate_count_; |
58 | 59 |
59 DISALLOW_COPY_AND_ASSIGN(TestActivationDelegate); | 60 DISALLOW_COPY_AND_ASSIGN(TestActivationDelegate); |
60 }; | 61 }; |
61 | 62 |
62 } // namespace test | 63 } // namespace test |
63 } // namespace ash | 64 } // namespace ash |
64 | 65 |
65 #endif // ASH_TEST_TEST_ACTIVATION_DELEGATE_H_ | 66 #endif // ASH_TEST_TEST_ACTIVATION_DELEGATE_H_ |
OLD | NEW |