| 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 #ifndef SERVICES_TEST_SERVICE_TEST_SERVICE_IMPL_H_ | |
| 6 #define SERVICES_TEST_SERVICE_TEST_SERVICE_IMPL_H_ | |
| 7 | |
| 8 #include <stdint.h> | |
| 9 | |
| 10 #include "base/memory/scoped_ptr.h" | |
| 11 #include "mojo/public/cpp/bindings/strong_binding.h" | |
| 12 #include "mojo/public/cpp/system/macros.h" | |
| 13 #include "mojo/services/test_service/test_service.mojom.h" | |
| 14 | |
| 15 namespace mojo { | |
| 16 class Connector; | |
| 17 namespace test { | |
| 18 | |
| 19 class TrackedService; | |
| 20 class TestServiceApplication; | |
| 21 | |
| 22 class TestServiceImpl : public TestService { | |
| 23 public: | |
| 24 TestServiceImpl(Connector* connector, | |
| 25 TestServiceApplication* application, | |
| 26 InterfaceRequest<TestService> request); | |
| 27 ~TestServiceImpl() override; | |
| 28 | |
| 29 // |TestService| methods: | |
| 30 void Ping(const mojo::Callback<void()>& callback) override; | |
| 31 void ConnectToAppAndGetTime( | |
| 32 const mojo::String& app_url, | |
| 33 const mojo::Callback<void(int64_t)>& callback) override; | |
| 34 void StartTrackingRequests(const mojo::Callback<void()>& callback) override; | |
| 35 | |
| 36 private: | |
| 37 TestServiceApplication* const application_; | |
| 38 Connector* const connector_; | |
| 39 TestTimeServicePtr time_service_; | |
| 40 scoped_ptr<TrackedService> tracking_; | |
| 41 StrongBinding<TestService> binding_; | |
| 42 | |
| 43 DISALLOW_COPY_AND_ASSIGN(TestServiceImpl); | |
| 44 }; | |
| 45 | |
| 46 } // namespace test | |
| 47 } // namespace mojo | |
| 48 | |
| 49 #endif // SERVICES_TEST_SERVICE_TEST_SERVICE_IMPL_H_ | |
| OLD | NEW |