blob: 74aa39cba17a58196970c7dd27642b49e2ada6d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// Copyright 2014 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 SERVICES_TEST_SERVICE_TEST_REQUEST_TRACKER_APPLICATION_H_
#define SERVICES_TEST_SERVICE_TEST_REQUEST_TRACKER_APPLICATION_H_
#include "mojo/public/cpp/system/macros.h"
#include "mojo/services/test_service/test_request_tracker_impl.h"
#include "mojo/shell/public/cpp/interface_factory_impl.h"
#include "mojo/shell/public/cpp/shell_client.h"
namespace mojo {
class ApplicationImpl;
namespace test {
class TestTimeService;
// Embeds TestRequestTracker mojo services into an application.
class TestRequestTrackerApplication
: public ShellClient,
public InterfaceFactory<TestTimeService>,
public InterfaceFactory<TestRequestTracker>,
public InterfaceFactory<TestTrackedRequestService> {
public:
TestRequestTrackerApplication();
~TestRequestTrackerApplication() override;
// mojo::ShellClient methods:
void Initialize(Shell* shell, const std::string& url, uint32_t id) override;
bool AcceptConnection(Connection* connection) override;
// InterfaceFactory<TestTimeService> methods:
void Create(Connection* connection,
InterfaceRequest<TestTimeService> request) override;
// InterfaceFactory<TestRequestTracker> methods:
void Create(Connection* connection,
InterfaceRequest<TestRequestTracker> request) override;
// InterfaceFactory<TestTrackedRequestService> methods:
void Create(Connection* connection,
InterfaceRequest<TestTrackedRequestService> request) override;
private:
Shell* shell_;
TrackingContext context_;
MOJO_DISALLOW_COPY_AND_ASSIGN(TestRequestTrackerApplication);
};
} // namespace test
} // namespace mojo
#endif // SERVICES_TEST_SERVICE_TEST_REQUEST_TRACKER_APPLICATION_H_
|