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

Unified Diff: cc/trees/single_thread_proxy.cc

Issue 924973003: CC: Force push properties for all layers when tracing is started (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed Created 5 years, 9 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/single_thread_proxy.cc
diff --git a/cc/trees/single_thread_proxy.cc b/cc/trees/single_thread_proxy.cc
index 1ecce4dd023296642034901ec9e15f7d766d7bbf..8d76a06770399bce35d114d00f6f946adb7a763e 100644
--- a/cc/trees/single_thread_proxy.cc
+++ b/cc/trees/single_thread_proxy.cc
@@ -544,7 +544,7 @@ void SingleThreadProxy::CompositeImmediately(base::TimeTicks frame_begin_time) {
DoAnimate();
- LayerTreeHostImpl::FrameData frame;
+ FrameData frame;
DoComposite(frame_begin_time, &frame);
// DoComposite could abort, but because this is a synchronous composite
@@ -586,7 +586,7 @@ void SingleThreadProxy::ScheduleRequestNewOutputSurface() {
}
DrawResult SingleThreadProxy::DoComposite(base::TimeTicks frame_begin_time,
- LayerTreeHostImpl::FrameData* frame) {
+ FrameData* frame) {
TRACE_EVENT0("cc", "SingleThreadProxy::DoComposite");
DCHECK(!layer_tree_host_->output_surface_lost());
@@ -759,7 +759,7 @@ void SingleThreadProxy::BeginMainFrameAbortedOnImplThread(
DrawResult SingleThreadProxy::ScheduledActionDrawAndSwapIfPossible() {
DebugScopedSetImplThread impl(this);
- LayerTreeHostImpl::FrameData frame;
+ FrameData frame;
return DoComposite(layer_tree_host_impl_->CurrentBeginFrameArgs().frame_time,
&frame);
}

Powered by Google App Engine
This is Rietveld 408576698