| 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 UI_VIEWS_TEST_WIDGET_TEST_H_ | 5 #ifndef UI_VIEWS_TEST_WIDGET_TEST_H_ |
| 6 #define UI_VIEWS_TEST_WIDGET_TEST_H_ | 6 #define UI_VIEWS_TEST_WIDGET_TEST_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/run_loop.h" | 9 #include "base/run_loop.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "ui/gfx/native_widget_types.h" | 11 #include "ui/gfx/native_widget_types.h" |
| 12 #include "ui/views/test/views_test_base.h" | 12 #include "ui/views/test/views_test_base.h" |
| 13 #include "ui/views/widget/widget_delegate.h" | 13 #include "ui/views/widget/widget_delegate.h" |
| 14 #include "ui/views/widget/widget_observer.h" | 14 #include "ui/views/widget/widget_observer.h" |
| 15 | 15 |
| 16 namespace ui { | 16 namespace ui { |
| 17 namespace internal { | 17 namespace internal { |
| 18 class InputMethodDelegate; | 18 class InputMethodDelegate; |
| 19 } | 19 } |
| 20 class EventProcessor; | 20 class EventProcessor; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace views { | 23 namespace views { |
| 24 | 24 |
| 25 class NativeWidget; | |
| 26 class Widget; | 25 class Widget; |
| 27 | 26 |
| 28 namespace internal { | 27 namespace internal { |
| 29 | 28 |
| 30 class RootView; | 29 class RootView; |
| 31 | 30 |
| 32 } // namespace internal | 31 } // namespace internal |
| 33 | 32 |
| 34 namespace test { | 33 namespace test { |
| 35 | 34 |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 bool observed_; | 171 bool observed_; |
| 173 bool active_; | 172 bool active_; |
| 174 | 173 |
| 175 DISALLOW_COPY_AND_ASSIGN(WidgetActivationWaiter); | 174 DISALLOW_COPY_AND_ASSIGN(WidgetActivationWaiter); |
| 176 }; | 175 }; |
| 177 | 176 |
| 178 } // namespace test | 177 } // namespace test |
| 179 } // namespace views | 178 } // namespace views |
| 180 | 179 |
| 181 #endif // UI_VIEWS_TEST_WIDGET_TEST_H_ | 180 #endif // UI_VIEWS_TEST_WIDGET_TEST_H_ |
| OLD | NEW |