blob: 9f5c6da2d1858a46cae38d3064a4a20adc5b2644 [file] [log] [blame]
// Copyright 2017 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 COMPONENTS_VIZ_HOST_HOST_FRAME_SINK_CLIENT_H_
#define COMPONENTS_VIZ_HOST_HOST_FRAME_SINK_CLIENT_H_
namespace viz {
class SurfaceInfo;
class HostFrameSinkClient {
public:
// Called when a CompositorFrame with a new SurfaceId activates for the first
// time.
virtual void OnFirstSurfaceActivation(const SurfaceInfo& surface_info) = 0;
// Called when a CompositorFrame with a new frame token is provided.
virtual void OnFrameTokenChanged(uint32_t frame_token) = 0;
protected:
virtual ~HostFrameSinkClient() {}
};
} // namespace viz
#endif // COMPONENTS_VIZ_HOST_HOST_FRAME_SINK_CLIENT_H_