| OLD | NEW |
| 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/common/tracing_impl.h" |
| 9 #include "mojo/public/cpp/application/application_delegate.h" | 10 #include "mojo/public/cpp/application/application_delegate.h" |
| 10 #include "mojo/public/cpp/application/interface_factory.h" | 11 #include "mojo/public/cpp/application/interface_factory.h" |
| 11 #include "mojo/services/surfaces/public/interfaces/surfaces_service.mojom.h" | 12 #include "mojo/services/surfaces/public/interfaces/surfaces_service.mojom.h" |
| 12 | 13 |
| 13 namespace mojo { | 14 namespace mojo { |
| 14 class ApplicationConnection; | 15 class ApplicationConnection; |
| 15 } | 16 } |
| 16 | 17 |
| 17 namespace fake_surfaces { | 18 namespace fake_surfaces { |
| 18 | 19 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 32 // InterfaceFactory<SurfacsService> implementation. | 33 // InterfaceFactory<SurfacsService> implementation. |
| 33 void Create(mojo::ApplicationConnection* connection, | 34 void Create(mojo::ApplicationConnection* connection, |
| 34 mojo::InterfaceRequest<mojo::SurfacesService> request) override; | 35 mojo::InterfaceRequest<mojo::SurfacesService> request) override; |
| 35 | 36 |
| 36 // InterfaceFactory<mojo::Surface> implementation. | 37 // InterfaceFactory<mojo::Surface> implementation. |
| 37 void Create(mojo::ApplicationConnection* connection, | 38 void Create(mojo::ApplicationConnection* connection, |
| 38 mojo::InterfaceRequest<mojo::Surface> request) override; | 39 mojo::InterfaceRequest<mojo::Surface> request) override; |
| 39 | 40 |
| 40 private: | 41 private: |
| 41 uint32_t next_id_namespace_; | 42 uint32_t next_id_namespace_; |
| 43 mojo::TracingImpl tracing_; |
| 42 | 44 |
| 43 DISALLOW_COPY_AND_ASSIGN(FakeSurfacesServiceApplication); | 45 DISALLOW_COPY_AND_ASSIGN(FakeSurfacesServiceApplication); |
| 44 }; | 46 }; |
| 45 | 47 |
| 46 } // namespace fake_surfaces | 48 } // namespace fake_surfaces |
| 47 | 49 |
| 48 #endif // FAKE_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_ | 50 #endif // FAKE_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_ |
| OLD | NEW |