Chromium Code Reviews| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 309 | 309 |
| 310 // Callback used to pass the output request to the layer or to a function | 310 // Callback used to pass the output request to the layer or to a function |
| 311 // specified by a test. | 311 // specified by a test. |
| 312 base::Callback<void(std::unique_ptr<cc::CopyOutputRequest>)> | 312 base::Callback<void(std::unique_ptr<cc::CopyOutputRequest>)> |
| 313 request_copy_of_output_callback_for_testing_; | 313 request_copy_of_output_callback_for_testing_; |
| 314 | 314 |
| 315 // YUV readback pipeline. | 315 // YUV readback pipeline. |
| 316 std::unique_ptr<content::ReadbackYUVInterface> yuv_readback_pipeline_; | 316 std::unique_ptr<content::ReadbackYUVInterface> yuv_readback_pipeline_; |
| 317 | 317 |
| 318 std::unique_ptr<DelegatedFrameEvictor> delegated_frame_evictor_; | 318 std::unique_ptr<DelegatedFrameEvictor> delegated_frame_evictor_; |
| 319 | 319 |
|
ncarter (slow)
2016/04/14 17:37:36
Remove this extra newline.
Łukasz Anforowicz
2016/04/14 19:34:48
Done.
| |
| 320 cc::BeginFrameSource* begin_frame_source_; | |
| 321 }; | 320 }; |
| 322 | 321 |
| 323 } // namespace content | 322 } // namespace content |
| 324 | 323 |
| 325 #endif // CONTENT_BROWSER_RENDERER_HOST_DELEGATED_FRAME_HOST_H_ | 324 #endif // CONTENT_BROWSER_RENDERER_HOST_DELEGATED_FRAME_HOST_H_ |
| OLD | NEW |