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

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

Issue 826423008: Use local ids for Surfaces APIs that can only apply to local surfaces (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef FAKE_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_ 5 #ifndef FAKE_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_
6 #define FAKE_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_ 6 #define FAKE_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "mojo/public/cpp/application/application_delegate.h" 9 #include "mojo/public/cpp/application/application_delegate.h"
10 #include "mojo/public/cpp/application/interface_factory.h" 10 #include "mojo/public/cpp/application/interface_factory.h"
11 #include "mojo/services/surfaces/public/interfaces/surfaces_service.mojom.h" 11 #include "mojo/services/surfaces/public/interfaces/surfaces_service.mojom.h"
12 12
13 namespace mojo { 13 namespace mojo {
14 class ApplicationConnection; 14 class ApplicationConnection;
15 } 15 }
16 16
17 namespace fake_surfaces { 17 namespace fake_surfaces {
18 18
19 class FakeSurfacesServiceApplication 19 class FakeSurfacesServiceApplication
20 : public mojo::ApplicationDelegate, 20 : public mojo::ApplicationDelegate,
21 public mojo::InterfaceFactory<mojo::SurfacesService> { 21 public mojo::InterfaceFactory<mojo::SurfacesService>,
22 public mojo::InterfaceFactory<mojo::Surface> {
22 public: 23 public:
23 FakeSurfacesServiceApplication(); 24 FakeSurfacesServiceApplication();
24 ~FakeSurfacesServiceApplication() override; 25 ~FakeSurfacesServiceApplication() override;
25 26
26 // ApplicationDelegate implementation. 27 // ApplicationDelegate implementation.
27 void Initialize(mojo::ApplicationImpl* app) override; 28 void Initialize(mojo::ApplicationImpl* app) override;
28 bool ConfigureIncomingConnection( 29 bool ConfigureIncomingConnection(
29 mojo::ApplicationConnection* connection) override; 30 mojo::ApplicationConnection* connection) override;
30 31
31 // InterfaceFactory<SurfacsService> implementation. 32 // InterfaceFactory<SurfacsService> implementation.
32 void Create(mojo::ApplicationConnection* connection, 33 void Create(mojo::ApplicationConnection* connection,
33 mojo::InterfaceRequest<mojo::SurfacesService> request) override; 34 mojo::InterfaceRequest<mojo::SurfacesService> request) override;
34 35
36 // InterfaceFactory<mojo::Surface> implementation.
37 void Create(mojo::ApplicationConnection* connection,
38 mojo::InterfaceRequest<mojo::Surface> request) override;
39
35 private: 40 private:
36 uint32_t next_id_namespace_; 41 uint32_t next_id_namespace_;
37 42
38 DISALLOW_COPY_AND_ASSIGN(FakeSurfacesServiceApplication); 43 DISALLOW_COPY_AND_ASSIGN(FakeSurfacesServiceApplication);
39 }; 44 };
40 45
41 } // namespace fake_surfaces 46 } // namespace fake_surfaces
42 47
43 #endif // FAKE_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_ 48 #endif // FAKE_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698