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.mojom.h" |
| 8 |
| 9 namespace mojo { |
| 10 namespace test { |
| 11 |
| 12 class TestServiceImpl : public InterfaceImpl<ITestService> { |
| 13 public: |
| 14 TestServiceImpl(); |
| 15 virtual ~TestServiceImpl(); |
| 16 |
| 17 // |ITestService| methods: |
| 18 virtual void Ping(const mojo::Callback<void()>& callback) MOJO_OVERRIDE; |
| 19 |
| 20 private: |
| 21 MOJO_DISALLOW_COPY_AND_ASSIGN(TestServiceImpl); |
| 22 }; |
| 23 |
| 24 } // namespace test |
| 25 } // namespace mojo |
| 26 |
OLD | NEW |