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 FAKE_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_ | |
6 #define FAKE_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "mojo/common/tracing_impl.h" | |
10 #include "mojo/public/cpp/application/application_delegate.h" | |
11 #include "mojo/public/cpp/application/interface_factory.h" | |
12 #include "mojo/services/surfaces/interfaces/display.mojom.h" | |
13 #include "mojo/services/surfaces/interfaces/surfaces.mojom.h" | |
14 | |
15 namespace mojo { | |
16 class ApplicationConnection; | |
17 } | |
18 | |
19 namespace fake_surfaces { | |
20 | |
21 class FakeSurfacesServiceApplication | |
22 : public mojo::ApplicationDelegate, | |
23 public mojo::InterfaceFactory<mojo::DisplayFactory>, | |
24 public mojo::InterfaceFactory<mojo::Surface> { | |
25 public: | |
26 FakeSurfacesServiceApplication(); | |
27 ~FakeSurfacesServiceApplication() override; | |
28 | |
29 // ApplicationDelegate implementation. | |
30 void Initialize(mojo::ApplicationImpl* app) override; | |
31 bool ConfigureIncomingConnection( | |
32 mojo::ApplicationConnection* connection) override; | |
33 | |
34 // InterfaceFactory<mojo::DisplayFactory> implementation. | |
35 void Create(mojo::ApplicationConnection* connection, | |
36 mojo::InterfaceRequest<mojo::DisplayFactory> request) override; | |
37 | |
38 // InterfaceFactory<mojo::Surface> implementation. | |
39 void Create(mojo::ApplicationConnection* connection, | |
40 mojo::InterfaceRequest<mojo::Surface> request) override; | |
41 | |
42 private: | |
43 uint32_t next_id_namespace_; | |
44 mojo::TracingImpl tracing_; | |
45 | |
46 DISALLOW_COPY_AND_ASSIGN(FakeSurfacesServiceApplication); | |
47 }; | |
48 | |
49 } // namespace fake_surfaces | |
50 | |
51 #endif // FAKE_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_ | |
OLD | NEW |