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

Unified Diff: content/test/run_all_unittests.cc

Issue 1387963004: Create a broker interface for the new Mojo EDK so that the browser can create and duplicate messa... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: presubmit whitespace error Created 5 years, 1 month 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: content/test/run_all_unittests.cc
diff --git a/content/test/run_all_unittests.cc b/content/test/run_all_unittests.cc
index 78d2c74e20a8d6213c6521d8748a7461954a1347..d4fbd20015aab09085a57ebf98d6d1717c85bd21 100644
--- a/content/test/run_all_unittests.cc
+++ b/content/test/run_all_unittests.cc
@@ -19,11 +19,11 @@ int main(int argc, char** argv) {
// Register JNI bindings for android.
base::RegisterContentUriTestUtils(base::android::AttachCurrentThread());
#endif
+ content::UnitTestTestSuite test_suite(
+ new content::ContentTestSuite(argc, argv));
#if !defined(OS_IOS)
content::InitializeMojo();
#endif
- content::UnitTestTestSuite test_suite(
- new content::ContentTestSuite(argc, argv));
return base::LaunchUnitTests(
argc, argv, base::Bind(&content::UnitTestTestSuite::Run,

Powered by Google App Engine
This is Rietveld 408576698