OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef UI_VIEWS_TEST_VIEWS_INTERACTIVE_UI_TEST_BASE_H_ | |
6 #define UI_VIEWS_TEST_VIEWS_INTERACTIVE_UI_TEST_BASE_H_ | |
7 | |
8 #include "ui/views/test/views_test_base.h" | |
9 | |
10 namespace views { | |
11 | |
12 // A ViewsTestBase setups for the interactive uitest. | |
sky
2016/10/24 20:05:02
'the interactive uitest'-> 'interactive uitests'
| |
13 class ViewsInteractiveUITestBase : public ViewsTestBase { | |
14 public: | |
15 ViewsInteractiveUITestBase(); | |
16 ~ViewsInteractiveUITestBase() override; | |
17 | |
18 void SetUp() override; | |
19 | |
20 private: | |
21 DISALLOW_COPY_AND_ASSIGN(ViewsInteractiveUITestBase); | |
22 }; | |
23 | |
24 } // namespace views | |
25 | |
26 #endif // UI_VIEWS_TEST_VIEWS_INTERACTIVE_UI_TEST_BASE_H_ | |
OLD | NEW |