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

Side by Side Diff: services/test/services_unittest_main.cc

Issue 1028543002: Turn the utility process image decoder into a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Clean up and add test. Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/bind.h"
6 #include "base/test/launcher/unit_test_launcher.h"
7 #include "content/public/test/content_test_suite_base.h"
8 #include "content/public/test/unittest_test_suite.h"
9 #include "third_party/mojo/src/mojo/edk/embedder/test_embedder.h"
10
11 namespace {
12
13 class ServicesTestSuite : public content::ContentTestSuiteBase {
14 public:
15 ServicesTestSuite(int argc, char** argv)
16 : content::ContentTestSuiteBase(argc, argv) {}
17 };
18
19 } // namespace
20
21 int main(int argc, char** argv) {
22 content::UnitTestTestSuite test_suite(new ServicesTestSuite(argc, argv));
23
24 mojo::embedder::test::InitWithSimplePlatformSupport();
25 return base::LaunchUnitTests(argc, argv,
26 base::Bind(&content::UnitTestTestSuite::Run,
27 base::Unretained(&test_suite)));
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698