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_RENDERER_HOST_DELEGATED_FRAME_HOST_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_DELEGATED_FRAME_HOST_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_DELEGATED_FRAME_HOST_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_DELEGATED_FRAME_HOST_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 | 310 |
311 // Callback used to pass the output request to the layer or to a function | 311 // Callback used to pass the output request to the layer or to a function |
312 // specified by a test. | 312 // specified by a test. |
313 base::Callback<void(std::unique_ptr<cc::CopyOutputRequest>)> | 313 base::Callback<void(std::unique_ptr<cc::CopyOutputRequest>)> |
314 request_copy_of_output_callback_for_testing_; | 314 request_copy_of_output_callback_for_testing_; |
315 | 315 |
316 // YUV readback pipeline. | 316 // YUV readback pipeline. |
317 std::unique_ptr<content::ReadbackYUVInterface> yuv_readback_pipeline_; | 317 std::unique_ptr<content::ReadbackYUVInterface> yuv_readback_pipeline_; |
318 | 318 |
319 std::unique_ptr<DelegatedFrameEvictor> delegated_frame_evictor_; | 319 std::unique_ptr<DelegatedFrameEvictor> delegated_frame_evictor_; |
320 | |
321 cc::BeginFrameSource* begin_frame_source_; | |
322 }; | 320 }; |
323 | 321 |
324 } // namespace content | 322 } // namespace content |
325 | 323 |
326 #endif // CONTENT_BROWSER_RENDERER_HOST_DELEGATED_FRAME_HOST_H_ | 324 #endif // CONTENT_BROWSER_RENDERER_HOST_DELEGATED_FRAME_HOST_H_ |
OLD | NEW |