Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Unified Diff: ui/views/mus/views_mus_test_suite.h

Issue 1982963002: Reland: mus: Add views_mus_interactive_ui_tests target (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix size_t to int warning on Windows Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/mus/run_all_unittests_mus.cc ('k') | ui/views/mus/views_mus_test_suite.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/views_mus_test_suite.h
diff --git a/ui/views/mus/views_mus_test_suite.h b/ui/views/mus/views_mus_test_suite.h
new file mode 100644
index 0000000000000000000000000000000000000000..64f81ba03901c5df462f814b6a6a07aa597f8d5c
--- /dev/null
+++ b/ui/views/mus/views_mus_test_suite.h
@@ -0,0 +1,34 @@
+// 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_MUS_VIEWS_MUS_TEST_SUITE_H_
+#define UI_VIEWS_MUS_VIEWS_MUS_TEST_SUITE_H_
+
+#include <memory>
+
+#include "base/macros.h"
+#include "ui/views/run_all_unittests.h"
+
+namespace views {
+
+class ShellConnection;
+
+class ViewsMusTestSuite : public ViewTestSuite {
+ public:
+ ViewsMusTestSuite(int argc, char** argv);
+ ~ViewsMusTestSuite() override;
+
+ private:
+ // ViewTestSuite:
+ void Initialize() override;
+ void Shutdown() override;
+
+ std::unique_ptr<ShellConnection> shell_connections_;
+
+ DISALLOW_COPY_AND_ASSIGN(ViewsMusTestSuite);
+};
+
+} // namespace views
+
+#endif // UI_VIEWS_MUS_VIEWS_MUS_TEST_SUITE_H_
« no previous file with comments | « ui/views/mus/run_all_unittests_mus.cc ('k') | ui/views/mus/views_mus_test_suite.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698