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

Unified Diff: cc/trees/thread_proxy.cc

Issue 139063002: Unblock main thread before LTHImpl::CommitComplete. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: undo unnecessary edit Created 6 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/thread_proxy.cc
diff --git a/cc/trees/thread_proxy.cc b/cc/trees/thread_proxy.cc
index 0518a6b4440a4c4b1beca46510ef36820d41d376..b3fe8cca020d054f4fea1ace615b075383ba05bf 100644
--- a/cc/trees/thread_proxy.cc
+++ b/cc/trees/thread_proxy.cc
@@ -1015,19 +1015,14 @@ void ThreadProxy::ScheduledActionCommit() {
current_resource_update_controller_on_impl_thread_->Finalize();
current_resource_update_controller_on_impl_thread_.reset();
- inside_commit_ = true;
layer_tree_host_impl_->BeginCommit();
+
+ inside_commit_ = true;
layer_tree_host()->BeginCommitOnImplThread(layer_tree_host_impl_.get());
layer_tree_host()->FinishCommitOnImplThread(layer_tree_host_impl_.get());
- layer_tree_host_impl_->CommitComplete();
inside_commit_ = false;
- SetInputThrottledUntilCommitOnImplThread(false);
-
- UpdateBackgroundAnimateTicking();
-
- next_frame_is_newly_committed_frame_on_impl_thread_ = true;
-
+ // Unblock the main thread if possible.
if (layer_tree_host()->settings().impl_side_painting &&
commit_waits_for_activation_) {
// For some layer types in impl-side painting, the commit is held until
@@ -1041,9 +1036,16 @@ void ThreadProxy::ScheduledActionCommit() {
commit_completion_event_on_impl_thread_->Signal();
commit_completion_event_on_impl_thread_ = NULL;
}
-
commit_waits_for_activation_ = false;
+ layer_tree_host_impl_->CommitComplete();
+
+ SetInputThrottledUntilCommitOnImplThread(false);
+
+ UpdateBackgroundAnimateTicking();
+
+ next_frame_is_newly_committed_frame_on_impl_thread_ = true;
+
commit_complete_time_ = base::TimeTicks::HighResNow();
begin_main_frame_to_commit_duration_history_.InsertSample(
commit_complete_time_ - begin_main_frame_sent_time_);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698