Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Side by Side Diff: services/fake_surfaces/fake_surfaces_service_application.h

Issue 1534693002: Delete the Surfaces service. (Closed) Base URL: git@github.com:domokit/mojo.git@cl-2d
Patch Set: rebase Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW
« no previous file with comments | « services/fake_surfaces/BUILD.gn ('k') | services/fake_surfaces/fake_surfaces_service_application.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698