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

Unified Diff: cc/surfaces/surface.cc

Issue 511423004: Add LatencyInfo support for Surfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/surfaces/surface.h ('k') | cc/surfaces/surface_aggregator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/surfaces/surface.cc
diff --git a/cc/surfaces/surface.cc b/cc/surfaces/surface.cc
index 0e08ec4f5461c849b14bd8585c6a56476868900c..8f08d63d9275e9d77d6c1e0fa912b98524272237 100644
--- a/cc/surfaces/surface.cc
+++ b/cc/surfaces/surface.cc
@@ -33,6 +33,7 @@ Surface::~Surface() {
void Surface::QueueFrame(scoped_ptr<CompositorFrame> frame,
const base::Closure& callback) {
+ TakeLatencyInfo(&frame->metadata.latency_info);
scoped_ptr<CompositorFrame> previous_frame = current_frame_.Pass();
current_frame_ = frame.Pass();
factory_->ReceiveFromChild(
@@ -60,6 +61,19 @@ const CompositorFrame* Surface::GetEligibleFrame() {
return current_frame_.get();
}
+void Surface::TakeLatencyInfo(std::vector<ui::LatencyInfo>* latency_info) {
+ if (!current_frame_)
+ return;
+ if (latency_info->empty()) {
+ current_frame_->metadata.latency_info.swap(*latency_info);
+ return;
+ }
+ std::copy(current_frame_->metadata.latency_info.begin(),
+ current_frame_->metadata.latency_info.end(),
+ std::back_inserter(*latency_info));
+ current_frame_->metadata.latency_info.clear();
+}
+
void Surface::RunDrawCallbacks() {
if (!draw_callback_.is_null()) {
base::Closure callback = draw_callback_;
« no previous file with comments | « cc/surfaces/surface.h ('k') | cc/surfaces/surface_aggregator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698