1 // Copyright 2015 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_BROWSER_COMPOSITOR_OFFSCREEN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
6 #define CONTENT_BROWSER_COMPOSITOR_OFFSCREEN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
8 #include "base/cancelable_callback.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/weak_ptr.h"
11 #include "content/browser/compositor/browser_compositor_output_surface.h"
14 class CompositorVSyncManager
;
18 class CommandBufferProxyImpl
;
19 class ReflectorTexture
;
21 class OffscreenBrowserCompositorOutputSurface
22 : public BrowserCompositorOutputSurface
{
24 OffscreenBrowserCompositorOutputSurface(
25 const scoped_refptr
<ContextProviderCommandBuffer
>& context
,
26 const scoped_refptr
<ui::CompositorVSyncManager
>& vsync_manager
,
27 scoped_ptr
<BrowserCompositorOverlayCandidateValidator
>
28 overlay_candidate_validator
);
30 ~OffscreenBrowserCompositorOutputSurface() override
;
34 void EnsureBackbuffer() override
;
35 void DiscardBackbuffer() override
;
36 void Reshape(const gfx::Size
& size
, float scale_factor
) override
;
37 void BindFramebuffer() override
;
38 void SwapBuffers(cc::CompositorFrame
* frame
) override
;
40 // BrowserCompositorOutputSurface
41 void OnReflectorChanged() override
;
42 base::Closure
CreateCompositionStartedCallback() override
;
43 #if defined(OS_MACOSX)
44 void OnSurfaceDisplayed() override
{};
45 void SetSurfaceSuspendedForRecycle(bool suspended
) override
{};
46 bool SurfaceShouldNotShowFramesAfterSuspendForRecycle() const override
;
50 bool is_backbuffer_discarded_
;
51 scoped_ptr
<ReflectorTexture
> reflector_texture_
;
53 base::WeakPtrFactory
<OffscreenBrowserCompositorOutputSurface
>
57 DISALLOW_COPY_AND_ASSIGN(OffscreenBrowserCompositorOutputSurface
);
60 } // namespace content
62 #endif // CONTENT_BROWSER_COMPOSITOR_OFFSCREEN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_