| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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_SURFACE_DISPLAY_OUTPUT_SURFACE_H_ | 5 #ifndef CONTENT_BROWSER_COMPOSITOR_SURFACE_DISPLAY_OUTPUT_SURFACE_H_ |
| 6 #define CONTENT_BROWSER_COMPOSITOR_SURFACE_DISPLAY_OUTPUT_SURFACE_H_ | 6 #define CONTENT_BROWSER_COMPOSITOR_SURFACE_DISPLAY_OUTPUT_SURFACE_H_ |
| 7 | 7 |
| 8 #include "cc/output/output_surface.h" | 8 #include "cc/output/output_surface.h" |
| 9 #include "cc/surfaces/surface_factory.h" | 9 #include "cc/surfaces/surface_factory.h" |
| 10 #include "cc/surfaces/surface_factory_client.h" | 10 #include "cc/surfaces/surface_factory_client.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 // cc::OutputSurface implementation. | 41 // cc::OutputSurface implementation. |
| 42 void SwapBuffers(cc::CompositorFrame* frame) override; | 42 void SwapBuffers(cc::CompositorFrame* frame) override; |
| 43 bool BindToClient(cc::OutputSurfaceClient* client) override; | 43 bool BindToClient(cc::OutputSurfaceClient* client) override; |
| 44 void ForceReclaimResources() override; | 44 void ForceReclaimResources() override; |
| 45 | 45 |
| 46 // cc::SurfaceFactoryClient implementation. | 46 // cc::SurfaceFactoryClient implementation. |
| 47 void ReturnResources(const cc::ReturnedResourceArray& resources) override; | 47 void ReturnResources(const cc::ReturnedResourceArray& resources) override; |
| 48 | 48 |
| 49 private: | 49 private: |
| 50 void SwapBuffersComplete(bool drawn); | 50 void SwapBuffersComplete(cc::SurfaceDrawStatus drawn); |
| 51 | 51 |
| 52 OnscreenDisplayClient* display_client_; | 52 OnscreenDisplayClient* display_client_; |
| 53 cc::SurfaceManager* surface_manager_; | 53 cc::SurfaceManager* surface_manager_; |
| 54 cc::SurfaceFactory factory_; | 54 cc::SurfaceFactory factory_; |
| 55 gfx::Size display_size_; | 55 gfx::Size display_size_; |
| 56 cc::SurfaceId surface_id_; | 56 cc::SurfaceId surface_id_; |
| 57 cc::SurfaceIdAllocator* allocator_; | 57 cc::SurfaceIdAllocator* allocator_; |
| 58 | 58 |
| 59 DISALLOW_COPY_AND_ASSIGN(SurfaceDisplayOutputSurface); | 59 DISALLOW_COPY_AND_ASSIGN(SurfaceDisplayOutputSurface); |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace content | 62 } // namespace content |
| 63 | 63 |
| 64 #endif // CONTENT_BROWSER_COMPOSITOR_SURFACE_DISPLAY_OUTPUT_SURFACE_H_ | 64 #endif // CONTENT_BROWSER_COMPOSITOR_SURFACE_DISPLAY_OUTPUT_SURFACE_H_ |
| OLD | NEW |