Home | History | Annotate | Download | only in test_service
      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 MOJO_SERVICES_TEST_SERVICE_TEST_SERVICE_IMPL_H_
      6 #define MOJO_SERVICES_TEST_SERVICE_TEST_SERVICE_IMPL_H_
      7 
      8 #include "mojo/public/cpp/system/macros.h"
      9 #include "mojo/services/test_service/test_service.mojom.h"
     10 
     11 namespace mojo {
     12 namespace test {
     13 
     14 class TestServiceApplication;
     15 
     16 class TestServiceImpl : public InterfaceImpl<ITestService> {
     17  public:
     18   explicit TestServiceImpl(TestServiceApplication* application);
     19   virtual ~TestServiceImpl();
     20 
     21   // |ITestService| methods:
     22   virtual void OnConnectionEstablished() MOJO_OVERRIDE;
     23   virtual void OnConnectionError() MOJO_OVERRIDE;
     24   virtual void Ping(const mojo::Callback<void()>& callback) MOJO_OVERRIDE;
     25 
     26  private:
     27   TestServiceApplication* const application_;
     28 
     29   MOJO_DISALLOW_COPY_AND_ASSIGN(TestServiceImpl);
     30 };
     31 
     32 }  // namespace test
     33 }  // namespace mojo
     34 
     35 #endif  // MOJO_SERVICES_TEST_SERVICE_TEST_SERVICE_IMPL_H_
     36