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

Unified Diff: ui/views/run_all_unittests.h

Issue 1978293003: Rename ViewTestSuite to ViewsTestSuite and put it in the proper file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@widgetinteractive
Patch Set: rebase 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/views_mus_test_suite.cc ('k') | ui/views/run_all_unittests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/run_all_unittests.h
diff --git a/ui/views/run_all_unittests.h b/ui/views/run_all_unittests.h
deleted file mode 100644
index bb9d97bc0a286314461826ead3c50d5d10d5f35f..0000000000000000000000000000000000000000
--- a/ui/views/run_all_unittests.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// 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_RUN_ALL_UNITTESTS_H_
-#define UI_VIEWS_RUN_ALL_UNITTESTS_H_
-
-#include "base/callback_forward.h"
-#include "base/test/test_suite.h"
-
-#if defined(USE_AURA)
-#include <memory>
-#endif
-
-namespace aura {
-class Env;
-}
-
-namespace views {
-
-// TODO(jamescook): Rename this to ViewsTestSuite and rename the file to match.
-class ViewTestSuite : public base::TestSuite {
- public:
- ViewTestSuite(int argc, char** argv);
- ~ViewTestSuite() override;
-
- int RunTests();
- int RunTestsSerially();
-
- protected:
- // base::TestSuite:
- void Initialize() override;
- void Shutdown() override;
-
- private:
-#if defined(USE_AURA)
- std::unique_ptr<aura::Env> env_;
-#endif
- int argc_;
- char** argv_;
-
- DISALLOW_COPY_AND_ASSIGN(ViewTestSuite);
-};
-
-} // namespace
-
-#endif // UI_VIEWS_RUN_ALL_UNITTESTS_H_
« no previous file with comments | « ui/views/mus/views_mus_test_suite.cc ('k') | ui/views/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698