| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_VIEWS_TEST_HELPER_H_ | 5 #ifndef UI_VIEWS_TEST_VIEWS_TEST_HELPER_H_ |
| 6 #define UI_VIEWS_TEST_VIEWS_TEST_HELPER_H_ | 6 #define UI_VIEWS_TEST_VIEWS_TEST_HELPER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "ui/gfx/native_widget_types.h" | 9 #include "ui/gfx/native_widget_types.h" |
| 9 | 10 |
| 10 namespace base { | 11 namespace base { |
| 11 class MessageLoopForUI; | 12 class MessageLoopForUI; |
| 12 } | 13 } |
| 13 | 14 |
| 14 namespace ui { | 15 namespace ui { |
| 15 class ContextFactory; | 16 class ContextFactory; |
| 16 } | 17 } |
| 17 | 18 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 38 // RootWindow. Everywhere else, NULL. | 39 // RootWindow. Everywhere else, NULL. |
| 39 virtual gfx::NativeWindow GetContext(); | 40 virtual gfx::NativeWindow GetContext(); |
| 40 | 41 |
| 41 private: | 42 private: |
| 42 DISALLOW_COPY_AND_ASSIGN(ViewsTestHelper); | 43 DISALLOW_COPY_AND_ASSIGN(ViewsTestHelper); |
| 43 }; | 44 }; |
| 44 | 45 |
| 45 } // namespace views | 46 } // namespace views |
| 46 | 47 |
| 47 #endif // UI_VIEWS_TEST_VIEWS_TEST_HELPER_H_ | 48 #endif // UI_VIEWS_TEST_VIEWS_TEST_HELPER_H_ |
| OLD | NEW |