| Index: content/public/test/test_mojo_app.h
|
| diff --git a/content/public/test/test_mojo_app.h b/content/public/test/test_mojo_app.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e01e7b5088604b04afec0b46ffe67fe1337563fa
|
| --- /dev/null
|
| +++ b/content/public/test/test_mojo_app.h
|
| @@ -0,0 +1,50 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CONTENT_PUBLIC_TEST_TEST_MOJO_APP_H_
|
| +#define CONTENT_PUBLIC_TEST_TEST_MOJO_APP_H_
|
| +
|
| +#include "base/macros.h"
|
| +#include "content/public/test/test_mojo_service.mojom.h"
|
| +#include "mojo/application/public/cpp/application_delegate.h"
|
| +#include "mojo/application/public/cpp/interface_factory.h"
|
| +#include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h"
|
| +
|
| +namespace content {
|
| +
|
| +extern const char kTestMojoAppUrl[];
|
| +
|
| +// Simple Mojo app which provides a TestMojoService impl. The app terminates
|
| +// itself after its TestService fulfills a single DoSomething call.
|
| +class TestMojoApp : public mojo::ApplicationDelegate,
|
| + public mojo::InterfaceFactory<TestMojoService>,
|
| + public TestMojoService {
|
| + public:
|
| + TestMojoApp();
|
| + ~TestMojoApp() override;
|
| +
|
| + private:
|
| + // mojo::ApplicationDelegate:
|
| + void Initialize(mojo::ApplicationImpl* app) override;
|
| + bool ConfigureIncomingConnection(
|
| + mojo::ApplicationConnection* connection) override;
|
| +
|
| + // mojo::InterfaceFactory<TestMojoService>:
|
| + void Create(mojo::ApplicationConnection* connection,
|
| + mojo::InterfaceRequest<TestMojoService> request) override;
|
| +
|
| + // TestMojoService:
|
| + void DoSomething(const DoSomethingCallback& callback) override;
|
| +
|
| + mojo::Binding<TestMojoService> service_binding_;
|
| +
|
| + // Not owned.
|
| + mojo::ApplicationImpl* app_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(TestMojoApp);
|
| +};
|
| +
|
| +} // namespace
|
| +
|
| +#endif // CONTENT_PUBLIC_TEST_TEST_MOJO_APP_H_
|
|
|