blob: cdd5263d73a16c4df471b8dd5c2e0d27280a5d7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MOJO_EXAMPLES_SURFACES_APP_CHILD_IMPL_H_
#define MOJO_EXAMPLES_SURFACES_APP_CHILD_IMPL_H_
#include "base/memory/scoped_ptr.h"
#include "cc/surfaces/surface_id.h"
#include "cc/surfaces/surface_id_allocator.h"
#include "mojo/examples/surfaces_app/child.mojom.h"
#include "mojo/public/cpp/bindings/string.h"
#include "mojo/services/public/interfaces/surfaces/surface_id.mojom.h"
#include "mojo/services/public/interfaces/surfaces/surfaces.mojom.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/gfx/size.h"
namespace cc {
class CompositorFrame;
}
namespace mojo {
class ApplicationConnection;
namespace surfaces {
class Surface;
}
namespace examples {
// Simple example of a child app using surfaces.
class ChildImpl : public InterfaceImpl<Child>, public surfaces::SurfaceClient {
public:
class Context {
public:
virtual ApplicationConnection* ShellConnection(
const mojo::String& application_url) = 0;
};
explicit ChildImpl(ApplicationConnection* surfaces_service_connection);
virtual ~ChildImpl();
// surfaces::SurfaceClient implementation
virtual void SetIdNamespace(uint32_t id_namespace) OVERRIDE;
virtual void ReturnResources(
Array<surfaces::ReturnedResourcePtr> resources) OVERRIDE;
private:
// Child implementation.
virtual void ProduceFrame(
surfaces::ColorPtr color,
SizePtr size,
const mojo::Callback<void(surfaces::SurfaceIdPtr id)>& callback) OVERRIDE;
void Draw();
SkColor color_;
gfx::Size size_;
scoped_ptr<cc::SurfaceIdAllocator> allocator_;
surfaces::SurfacePtr surface_;
cc::SurfaceId id_;
mojo::Callback<void(surfaces::SurfaceIdPtr id)> produce_callback_;
DISALLOW_COPY_AND_ASSIGN(ChildImpl);
};
} // namespace examples
} // namespace mojo
#endif // MOJO_EXAMPLES_SURFACES_APP_CHILD_IMPL_H_
|