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: mojo/services/test_service/application.cc

Issue 314293002: Mojo: Add a trivial end-to-end (in-process) test of Mojo shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/services/test_service/test_service.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 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 "mojo/public/cpp/application/application.h"
6 #include "mojo/public/cpp/system/macros.h"
7 #include "mojo/services/test_service/test_service_impl.h"
8
9 namespace mojo {
10
sky 2014/06/06 00:02:00 nit: remove empty newline.
viettrungluu 2014/06/09 16:56:34 Done.
11 namespace test {
12 namespace {
13
14 class TestServiceApplication : public Application {
sky 2014/06/06 00:02:00 nit: I would name this file test_service_applicati
viettrungluu 2014/06/09 16:56:34 Done. I don't really care that much. (To irritate
15 public:
16 TestServiceApplication() {}
17 virtual ~TestServiceApplication() {}
18
19 virtual void Initialize() MOJO_OVERRIDE {
20 AddService<TestServiceImpl>();
21 }
22
23 private:
24 MOJO_DISALLOW_COPY_AND_ASSIGN(TestServiceApplication);
25 };
26
27 } // namespace
28 } // namespace test
29
30 // static
31 Application* Application::Create() {
32 return new mojo::test::TestServiceApplication();
33 }
34
35 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/services/test_service/test_service.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698