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

Unified Diff: components/display_compositor/run_all_unittests.cc

Issue 1902463002: Introduce components/display_compositor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove bot changes. Will do in a separate CL Created 4 years, 8 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
Index: components/display_compositor/run_all_unittests.cc
diff --git a/gpu/command_buffer/common/unittest_main.cc b/components/display_compositor/run_all_unittests.cc
similarity index 55%
copy from gpu/command_buffer/common/unittest_main.cc
copy to components/display_compositor/run_all_unittests.cc
index ed03dca8b6f2fee0183e3c7d29fb69f33875a7ca..5cd65a14021a0fa8632d3f92ff5700a6002f66e0 100644
--- a/gpu/command_buffer/common/unittest_main.cc
+++ b/components/display_compositor/run_all_unittests.cc
@@ -4,11 +4,13 @@
#include "base/bind.h"
#include "base/test/launcher/unit_test_launcher.h"
-#include "base/test/test_suite.h"
+#include "components/display_compositor/display_compositor_test_suite.h"
int main(int argc, char** argv) {
- base::TestSuite test_suite(argc, argv);
+ display_compositor::DisplayCompositorTestSuite test_suite(argc, argv);
+
return base::LaunchUnitTests(
argc, argv,
- base::Bind(&base::TestSuite::Run, base::Unretained(&test_suite)));
+ base::Bind(&display_compositor::DisplayCompositorTestSuite::Run,
+ base::Unretained(&test_suite)));
}
« no previous file with comments | « components/display_compositor/gl_helper_unittest.cc ('k') | components/display_compositor/yuv_readback_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698