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

Unified Diff: cc/trees/proxy_impl.cc

Issue 2888043004: [cc] Add and plumb CFS::DidNotProduceFrame. (Closed)
Patch Set: remove ExternalBFS::OnDidFinishFrame and related ack tracking. Created 3 years, 7 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
Index: cc/trees/proxy_impl.cc
diff --git a/cc/trees/proxy_impl.cc b/cc/trees/proxy_impl.cc
index 3d3b4a6539d88103df901bc209211713999a9d3c..60202f635348ba8d34d03712670cc035df22061e 100644
--- a/cc/trees/proxy_impl.cc
+++ b/cc/trees/proxy_impl.cc
@@ -483,6 +483,11 @@ void ProxyImpl::DidFinishImplFrame() {
layer_tree_host_impl_->DidFinishImplFrame();
}
+void ProxyImpl::BeginFrameDidNotProduceFrame(const BeginFrameAck& ack) {
+ DCHECK(IsImplThread());
+ layer_tree_host_impl_->BeginFrameDidNotProduceFrame(ack);
+}
+
void ProxyImpl::ScheduledActionSendBeginMainFrame(const BeginFrameArgs& args) {
DCHECK(IsImplThread());
unsigned int begin_frame_id = nextBeginFrameId++;

Powered by Google App Engine
This is Rietveld 408576698