[Android WebView] Fix webview perf bot switchover to use org.chromium.webview_shell...
[chromium-blink-merge.git] / content / public / browser / android / synchronous_compositor.h
blobafe49cdd5cdc078ae2b54352350afff3f3cf7035
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_
6 #define CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_
8 #include "base/memory/ref_counted.h"
9 #include "content/common/content_export.h"
10 #include "gpu/command_buffer/service/in_process_command_buffer.h"
11 #include "ui/gfx/geometry/rect.h"
12 #include "ui/gfx/geometry/size.h"
14 class SkCanvas;
16 namespace cc {
17 class CompositorFrame;
18 class CompositorFrameAck;
21 namespace gfx {
22 class Transform;
25 namespace gpu {
26 class GLInProcessContext;
29 namespace content {
31 class SynchronousCompositorClient;
32 class WebContents;
34 // Interface for embedders that wish to direct compositing operations
35 // synchronously under their own control. Only meaningful when the
36 // kEnableSyncrhonousRendererCompositor flag is specified.
37 class CONTENT_EXPORT SynchronousCompositor {
38 public:
39 // Must be called once per WebContents instance. Will create the compositor
40 // instance as needed, but only if |client| is non-nullptr.
41 static void SetClientForWebContents(WebContents* contents,
42 SynchronousCompositorClient* client);
44 static void SetGpuService(
45 scoped_refptr<gpu::InProcessCommandBuffer::Service> service);
47 // By default, synchronous compopsitor records the full layer, not only
48 // what is inside and around the view port. This can be used to switch
49 // between this record-full-layer behavior and normal record-around-viewport
50 // behavior.
51 static void SetRecordFullDocument(bool record_full_document);
53 // "On demand" hardware draw. The content is first clipped to |damage_area|,
54 // then transformed through |transform|, and finally clipped to |view_size|.
55 virtual scoped_ptr<cc::CompositorFrame> DemandDrawHw(
56 gfx::Size surface_size,
57 const gfx::Transform& transform,
58 gfx::Rect viewport,
59 gfx::Rect clip,
60 gfx::Rect viewport_rect_for_tile_priority,
61 const gfx::Transform& transform_for_tile_priority) = 0;
63 // For delegated rendering, return resources from parent compositor to this.
64 // Note that all resources must be returned before ReleaseHwDraw.
65 virtual void ReturnResources(const cc::CompositorFrameAck& frame_ack) = 0;
67 // "On demand" SW draw, into the supplied canvas (observing the transform
68 // and clip set there-in).
69 virtual bool DemandDrawSw(SkCanvas* canvas) = 0;
71 // Set the memory limit policy of this compositor.
72 virtual void SetMemoryPolicy(size_t bytes_limit) = 0;
74 // Should be called by the embedder after the embedder had modified the
75 // scroll offset of the root layer (as returned by
76 // SynchronousCompositorClient::GetTotalRootLayerScrollOffset).
77 virtual void DidChangeRootLayerScrollOffset() = 0;
79 // Called by the embedder to notify that the compositor is active. The
80 // compositor won't ask for vsyncs when it's inactive. NOTE: The compositor
81 // starts off as inactive and needs a SetActive(true) call to begin.
82 virtual void SetIsActive(bool is_active) = 0;
84 protected:
85 virtual ~SynchronousCompositor() {}
88 } // namespace content
90 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_