Chromium Code Reviews| Index: content/browser/aura/gpu_browser_compositor_output_surface.h |
| diff --git a/content/browser/aura/gpu_browser_compositor_output_surface.h b/content/browser/aura/gpu_browser_compositor_output_surface.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..181af95a0f94eab203308982f29b7c647571e3ca |
| --- /dev/null |
| +++ b/content/browser/aura/gpu_browser_compositor_output_surface.h |
| @@ -0,0 +1,35 @@ |
| +// Copyright 2013 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_BROWSER_AURA_GPU_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ |
| +#define CONTENT_BROWSER_AURA_GPU_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ |
| + |
| +#include "content/browser/aura/browser_compositor_output_surface.h" |
| + |
| +namespace content { |
| + |
| +// Adapts a WebGraphicsContext3DCommandBufferImpl into a |
| +// cc::OutputSurface that also handles vsync parameter updates |
| +// arriving from the GPU process. |
| +class GpuBrowserCompositorOutputSurface |
| + : public BrowserCompositorOutputSurface { |
| + |
|
piman
2013/11/07 00:45:12
nit: no need for blank line
dnicoara
2013/11/07 15:17:41
Done.
|
| + public: |
| + GpuBrowserCompositorOutputSurface( |
| + const scoped_refptr<ContextProviderCommandBuffer>& context, |
| + int surface_id, |
| + IDMap<BrowserCompositorOutputSurface>* output_surface_map, |
| + base::MessageLoopProxy* compositor_message_loop, |
| + base::WeakPtr<ui::Compositor> compositor); |
| + |
| + virtual ~GpuBrowserCompositorOutputSurface(); |
| + |
| + private: |
| + // cc::OutputSurface implementation. |
| + virtual void SwapBuffers(cc::CompositorFrame* frame) OVERRIDE; |
| +}; |
|
piman
2013/11/07 00:45:12
nit: DISALLOW_COPY_AND_ASSIGN
dnicoara
2013/11/07 15:17:41
Done.
|
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_BROWSER_AURA_GPU_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ |