summaryrefslogtreecommitdiffstats
path: root/cc/surfaces/surface_factory_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/surfaces/surface_factory_client.h')
-rw-r--r--cc/surfaces/surface_factory_client.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/cc/surfaces/surface_factory_client.h b/cc/surfaces/surface_factory_client.h
index c2a04af..e79b185 100644
--- a/cc/surfaces/surface_factory_client.h
+++ b/cc/surfaces/surface_factory_client.h
@@ -12,6 +12,9 @@
namespace cc {
+class BeginFrameSource;
+struct SurfaceId;
+
class CC_SURFACES_EXPORT SurfaceFactoryClient {
public:
virtual ~SurfaceFactoryClient() {}
@@ -20,6 +23,15 @@ class CC_SURFACES_EXPORT SurfaceFactoryClient {
virtual void WillDrawSurface(SurfaceId surface_id,
const gfx::Rect& damage_rect) {}
+
+ // This allows the SurfaceFactory to tell it's client what BeginFrameSource
+ // to use for a given surface_id.
+ // If there are multiple active surface_ids, it is the client's
+ // responsibility to pick or distribute the correct BeginFrameSource.
+ // If surface_id is null, then all BeginFrameSources previously
+ // set by this function should be invalidated.
+ virtual void SetBeginFrameSource(SurfaceId surface_id,
+ BeginFrameSource* begin_frame_source) = 0;
};
} // namespace cc