OLD | NEW |
---|---|
(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 | |
OLD | NEW |