| Index: examples/surfaces_app/child_impl.h
|
| diff --git a/examples/surfaces_app/child_impl.h b/examples/surfaces_app/child_impl.h
|
| index 46f2d7dfe01b7aabb33f6817abdf2e372e0d9333..1214014fc309a1db04f36f19eb381cdad578c30d 100644
|
| --- a/examples/surfaces_app/child_impl.h
|
| +++ b/examples/surfaces_app/child_impl.h
|
| @@ -28,7 +28,7 @@ class ApplicationConnection;
|
| namespace examples {
|
|
|
| // Simple example of a child app using surfaces.
|
| -class ChildImpl : public InterfaceImpl<Child>, public SurfaceClient {
|
| +class ChildImpl : public InterfaceImpl<Child> {
|
| public:
|
| class Context {
|
| public:
|
| @@ -41,9 +41,7 @@ class ChildImpl : public InterfaceImpl<Child>, public SurfaceClient {
|
| private:
|
| using ProduceCallback = mojo::Callback<void(SurfaceIdPtr id)>;
|
|
|
| - // SurfaceClient implementation
|
| - void SetIdNamespace(uint32_t id_namespace) override;
|
| - void ReturnResources(Array<ReturnedResourcePtr> resources) override;
|
| + void SetIdNamespace(uint32_t id_namespace);
|
|
|
| // Child implementation.
|
| void ProduceFrame(ColorPtr color,
|
|
|