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..22f7aee5a884fd61cae6137bd625e8d40a61a87f |
--- /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 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_ |