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

Unified Diff: components/mus/public/cpp/tests/run_all_unittests.cc

Issue 1340983002: Mandoline UI Process: Update namespaces and file names (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated all the namespaces in mus Created 5 years, 3 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/mus/public/cpp/tests/run_all_unittests.cc
diff --git a/components/mus/public/cpp/tests/run_all_unittests.cc b/components/mus/public/cpp/tests/run_all_unittests.cc
index 3d191d41bd29a91af019c4a5e30df0f91c506e1e..908589c97d334b23bd5fd1d45794845dfa2f6943 100644
--- a/components/mus/public/cpp/tests/run_all_unittests.cc
+++ b/components/mus/public/cpp/tests/run_all_unittests.cc
@@ -4,12 +4,12 @@
#include "base/bind.h"
#include "base/test/launcher/unit_test_launcher.h"
-#include "components/mus/public/cpp/tests/view_manager_test_suite.h"
+#include "components/mus/public/cpp/tests/mandoline_ui_services_test_suite.h"
int main(int argc, char** argv) {
- mojo::ViewManagerTestSuite test_suite(argc, argv);
+ mus::MandolineUIServicesTestSuite test_suite(argc, argv);
- return base::LaunchUnitTests(argc, argv,
- base::Bind(&mojo::ViewManagerTestSuite::Run,
- base::Unretained(&test_suite)));
+ return base::LaunchUnitTests(
+ argc, argv, base::Bind(&mus::MandolineUIServicesTestSuite::Run,
+ base::Unretained(&test_suite)));
}

Powered by Google App Engine
This is Rietveld 408576698