| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ | 5 #ifndef CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ |
| 6 #define CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ | 6 #define CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 bool has_transparent_background; | 135 bool has_transparent_background; |
| 136 #endif | 136 #endif |
| 137 } current_frame_data_; | 137 } current_frame_data_; |
| 138 | 138 |
| 139 base::ThreadChecker thread_checker_; | 139 base::ThreadChecker thread_checker_; |
| 140 | 140 |
| 141 cc::mojom::MojoCompositorFrameSinkPtr sink_; | 141 cc::mojom::MojoCompositorFrameSinkPtr sink_; |
| 142 cc::mojom::MojoCompositorFrameSinkPtrInfo sink_ptr_info_; | 142 cc::mojom::MojoCompositorFrameSinkPtrInfo sink_ptr_info_; |
| 143 cc::mojom::MojoCompositorFrameSinkClientRequest sink_client_request_; | 143 cc::mojom::MojoCompositorFrameSinkClientRequest sink_client_request_; |
| 144 mojo::Binding<cc::mojom::MojoCompositorFrameSinkClient> sink_client_binding_; | 144 mojo::Binding<cc::mojom::MojoCompositorFrameSinkClient> sink_client_binding_; |
| 145 | |
| 146 bool bound_ = false; | |
| 147 }; | 145 }; |
| 148 | 146 |
| 149 } // namespace content | 147 } // namespace content |
| 150 | 148 |
| 151 #endif // CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ | 149 #endif // CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ |
| OLD | NEW |