Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: content/browser/renderer_host/delegated_frame_host.h

Issue 1875463002: Remove unused fields from //content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scythe-root
Patch Set: Reverting not really needed changes under //gpu. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698