Apply _RELATIVE relocations ahead of others.
[chromium-blink-merge.git] / content / browser / compositor / gpu_surfaceless_browser_compositor_output_surface.h
blobe95ab7a5223e3b5353f225de5d583d44ba8c02e0
1 // Copyright 2014 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_GPU_SURFACELESS_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
6 #define CONTENT_BROWSER_COMPOSITOR_GPU_SURFACELESS_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
8 #include "content/browser/compositor/gpu_browser_compositor_output_surface.h"
10 namespace content {
12 class BufferQueue;
13 class GLHelper;
15 class GpuSurfacelessBrowserCompositorOutputSurface
16 : public GpuBrowserCompositorOutputSurface {
17 public:
18 GpuSurfacelessBrowserCompositorOutputSurface(
19 const scoped_refptr<ContextProviderCommandBuffer>& context,
20 int surface_id,
21 IDMap<BrowserCompositorOutputSurface>* output_surface_map,
22 const scoped_refptr<ui::CompositorVSyncManager>& vsync_manager,
23 scoped_ptr<cc::OverlayCandidateValidator> overlay_candidate_validator,
24 unsigned internalformat,
25 bool use_own_gl_helper);
26 ~GpuSurfacelessBrowserCompositorOutputSurface() override;
28 private:
29 // cc::OutputSurface implementation.
30 void SwapBuffers(cc::CompositorFrame* frame) override;
31 void OnSwapBuffersComplete() override;
32 void BindFramebuffer() override;
33 void Reshape(const gfx::Size& size, float scale_factor) override;
34 bool BindToClient(cc::OutputSurfaceClient* client) override;
36 unsigned int internalformat_;
37 bool use_own_gl_helper_;
38 scoped_ptr<GLHelper> gl_helper_;
39 scoped_ptr<BufferQueue> output_surface_;
42 } // namespace content
44 #endif // CONTENT_BROWSER_COMPOSITOR_GPU_SURFACELESS_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_