blob: d157ed658006f891bb10444218542c4402869ac1 [file] [log] [blame]
// Copyright 2015 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 CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_DELEGATE_H_
#define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_DELEGATE_H_
#include <memory>
#include <vector>
#include "content/common/content_export.h"
namespace cc {
class CopyOutputRequest;
class CompositorFrameSink;
class FrameSinkId;
class SwapPromise;
}
namespace gfx {
class Vector2dF;
}
namespace content {
// Consumers of RenderWidgetCompositor implement this delegate in order to
// transport compositing information across processes.
class CONTENT_EXPORT RenderWidgetCompositorDelegate {
public:
// Report viewport related properties during a commit from the compositor
// thread.
virtual void ApplyViewportDeltas(
const gfx::Vector2dF& inner_delta,
const gfx::Vector2dF& outer_delta,
const gfx::Vector2dF& elastic_overscroll_delta,
float page_scale,
float top_controls_delta) = 0;
// Notifies that the compositor has issed a BeginMainFrame.
virtual void BeginMainFrame(double frame_time_sec) = 0;
// Requests a CompositorFrameSink to submit to.
virtual std::unique_ptr<cc::CompositorFrameSink> CreateCompositorFrameSink(
const cc::FrameSinkId& frame_sink_id,
bool fallback) = 0;
// Notifies that the draw commands for a committed frame have been issued.
virtual void DidCommitAndDrawCompositorFrame() = 0;
// Notifies about a compositor frame commit operation having finished.
virtual void DidCommitCompositorFrame() = 0;
// Called by the compositor when page scale animation completed.
virtual void DidCompletePageScaleAnimation() = 0;
// Notifies that the last submitted CompositorFrame has been processed and
// will be displayed.
virtual void DidReceiveCompositorFrameAck() = 0;
// Indicates whether the RenderWidgetCompositor is about to close.
virtual bool IsClosing() const = 0;
// Requests that the client schedule a composite now, and calculate
// appropriate delay for potential future frame.
virtual void RequestScheduleAnimation() = 0;
// Requests a visual frame-based update to the state of the delegate if there
// an update available.
virtual void UpdateVisualState() = 0;
// Indicates that the compositor is about to begin a frame. This is primarily
// to signal to flow control mechanisms that a frame is beginning, not to
// perform actual painting work.
virtual void WillBeginCompositorFrame() = 0;
// For use in layout test mode only, attempts to copy the full content of the
// compositor.
virtual std::unique_ptr<cc::SwapPromise> RequestCopyOfOutputForLayoutTest(
std::unique_ptr<cc::CopyOutputRequest> request) = 0;
protected:
virtual ~RenderWidgetCompositorDelegate() {}
};
} // namespace content
#endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_DELEGATE_H_