Chromium Code Reviews| Index: ui/views/test/views_interactive_ui_test_base.h |
| diff --git a/ui/views/test/views_interactive_ui_test_base.h b/ui/views/test/views_interactive_ui_test_base.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e1124807ea01dfc825b6781a6ce05d05f0cedb4b |
| --- /dev/null |
| +++ b/ui/views/test/views_interactive_ui_test_base.h |
| @@ -0,0 +1,26 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef UI_VIEWS_TEST_VIEWS_INTERACTIVE_UI_TEST_BASE_H_ |
| +#define UI_VIEWS_TEST_VIEWS_INTERACTIVE_UI_TEST_BASE_H_ |
| + |
| +#include "ui/views/test/views_test_base.h" |
| + |
| +namespace views { |
| + |
| +// A ViewsTestBase setups for the interactive uitest. |
|
sky
2016/10/24 20:05:02
'the interactive uitest'-> 'interactive uitests'
|
| +class ViewsInteractiveUITestBase : public ViewsTestBase { |
| + public: |
| + ViewsInteractiveUITestBase(); |
| + ~ViewsInteractiveUITestBase() override; |
| + |
| + void SetUp() override; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(ViewsInteractiveUITestBase); |
| +}; |
| + |
| +} // namespace views |
| + |
| +#endif // UI_VIEWS_TEST_VIEWS_INTERACTIVE_UI_TEST_BASE_H_ |