| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 SERVICES_UI_SURFACES_DIRECT_OUTPUT_SURFACE_OZONE_H_ | 5 #ifndef SERVICES_UI_SURFACES_DIRECT_OUTPUT_SURFACE_OZONE_H_ |
| 6 #define SERVICES_UI_SURFACES_DIRECT_OUTPUT_SURFACE_OZONE_H_ | 6 #define SERVICES_UI_SURFACES_DIRECT_OUTPUT_SURFACE_OZONE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "cc/output/context_provider.h" | 11 #include "cc/output/context_provider.h" |
| 12 #include "cc/output/output_surface.h" | 12 #include "cc/output/output_surface.h" |
| 13 #include "components/display_compositor/gl_helper.h" | 13 #include "components/display_compositor/gl_helper.h" |
| 14 #include "services/ui/surfaces/ozone_gpu_memory_buffer_manager.h" |
| 14 #include "ui/gfx/geometry/size.h" | 15 #include "ui/gfx/geometry/size.h" |
| 15 #include "ui/gfx/native_widget_types.h" | 16 #include "ui/gfx/native_widget_types.h" |
| 16 #include "ui/gfx/swap_result.h" | 17 #include "ui/gfx/swap_result.h" |
| 17 #include "ui/gl/gl_surface.h" | 18 #include "ui/gl/gl_surface.h" |
| 18 | 19 |
| 19 namespace display_compositor { | 20 namespace display_compositor { |
| 20 class BufferQueue; | 21 class BufferQueue; |
| 21 } | 22 } |
| 22 | 23 |
| 23 namespace ui { | 24 namespace ui { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 bool BindToClient(cc::OutputSurfaceClient* client) override; | 65 bool BindToClient(cc::OutputSurfaceClient* client) override; |
| 65 | 66 |
| 66 // Taken from BrowserCompositor specific API. | 67 // Taken from BrowserCompositor specific API. |
| 67 void OnUpdateVSyncParametersFromGpu(base::TimeTicks timebase, | 68 void OnUpdateVSyncParametersFromGpu(base::TimeTicks timebase, |
| 68 base::TimeDelta interval); | 69 base::TimeDelta interval); |
| 69 | 70 |
| 70 // Called when a swap completion is sent from the GPU process. | 71 // Called when a swap completion is sent from the GPU process. |
| 71 void OnGpuSwapBuffersCompleted(gfx::SwapResult result); | 72 void OnGpuSwapBuffersCompleted(gfx::SwapResult result); |
| 72 | 73 |
| 73 display_compositor::GLHelper gl_helper_; | 74 display_compositor::GLHelper gl_helper_; |
| 75 std::unique_ptr<OzoneGpuMemoryBufferManager> ozone_gpu_memory_buffer_manager_; |
| 74 std::unique_ptr<display_compositor::BufferQueue> buffer_queue_; | 76 std::unique_ptr<display_compositor::BufferQueue> buffer_queue_; |
| 75 cc::SyntheticBeginFrameSource* const synthetic_begin_frame_source_; | 77 cc::SyntheticBeginFrameSource* const synthetic_begin_frame_source_; |
| 76 | 78 |
| 77 base::WeakPtrFactory<DirectOutputSurfaceOzone> weak_ptr_factory_; | 79 base::WeakPtrFactory<DirectOutputSurfaceOzone> weak_ptr_factory_; |
| 78 }; | 80 }; |
| 79 | 81 |
| 80 } // namespace ui | 82 } // namespace ui |
| 81 | 83 |
| 82 #endif // SERVICES_UI_SURFACES_DIRECT_OUTPUT_SURFACE_OZONE_H_ | 84 #endif // SERVICES_UI_SURFACES_DIRECT_OUTPUT_SURFACE_OZONE_H_ |
| OLD | NEW |