| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_COMPOSITOR_OFFSCREEN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H
_ | 5 #ifndef CONTENT_BROWSER_COMPOSITOR_OFFSCREEN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H
_ |
| 6 #define CONTENT_BROWSER_COMPOSITOR_OFFSCREEN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H
_ | 6 #define CONTENT_BROWSER_COMPOSITOR_OFFSCREEN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H
_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 namespace content { | 22 namespace content { |
| 23 class ContextProviderCommandBuffer; | 23 class ContextProviderCommandBuffer; |
| 24 class ReflectorTexture; | 24 class ReflectorTexture; |
| 25 | 25 |
| 26 class OffscreenBrowserCompositorOutputSurface | 26 class OffscreenBrowserCompositorOutputSurface |
| 27 : public BrowserCompositorOutputSurface { | 27 : public BrowserCompositorOutputSurface { |
| 28 public: | 28 public: |
| 29 OffscreenBrowserCompositorOutputSurface( | 29 OffscreenBrowserCompositorOutputSurface( |
| 30 scoped_refptr<ContextProviderCommandBuffer> context, | 30 scoped_refptr<ContextProviderCommandBuffer> context, |
| 31 scoped_refptr<ui::CompositorVSyncManager> vsync_manager, | 31 scoped_refptr<ui::CompositorVSyncManager> vsync_manager, |
| 32 cc::SyntheticBeginFrameSource* begin_frame_source, | |
| 33 std::unique_ptr<display_compositor::CompositorOverlayCandidateValidator> | 32 std::unique_ptr<display_compositor::CompositorOverlayCandidateValidator> |
| 34 overlay_candidate_validator); | 33 overlay_candidate_validator); |
| 35 | 34 |
| 36 ~OffscreenBrowserCompositorOutputSurface() override; | 35 ~OffscreenBrowserCompositorOutputSurface() override; |
| 37 | 36 |
| 38 private: | 37 private: |
| 39 // cc::OutputSurface implementation. | 38 // cc::OutputSurface implementation. |
| 40 void BindToClient(cc::OutputSurfaceClient* client) override; | 39 void BindToClient(cc::OutputSurfaceClient* client) override; |
| 41 void EnsureBackbuffer() override; | 40 void EnsureBackbuffer() override; |
| 42 void DiscardBackbuffer() override; | 41 void DiscardBackbuffer() override; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 66 std::unique_ptr<ReflectorTexture> reflector_texture_; | 65 std::unique_ptr<ReflectorTexture> reflector_texture_; |
| 67 base::WeakPtrFactory<OffscreenBrowserCompositorOutputSurface> | 66 base::WeakPtrFactory<OffscreenBrowserCompositorOutputSurface> |
| 68 weak_ptr_factory_; | 67 weak_ptr_factory_; |
| 69 | 68 |
| 70 DISALLOW_COPY_AND_ASSIGN(OffscreenBrowserCompositorOutputSurface); | 69 DISALLOW_COPY_AND_ASSIGN(OffscreenBrowserCompositorOutputSurface); |
| 71 }; | 70 }; |
| 72 | 71 |
| 73 } // namespace content | 72 } // namespace content |
| 74 | 73 |
| 75 #endif // CONTENT_BROWSER_COMPOSITOR_OFFSCREEN_BROWSER_COMPOSITOR_OUTPUT_SURFAC
E_H_ | 74 #endif // CONTENT_BROWSER_COMPOSITOR_OFFSCREEN_BROWSER_COMPOSITOR_OUTPUT_SURFAC
E_H_ |
| OLD | NEW |