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

Unified Diff: cc/trees/thread_proxy.cc

Issue 139053002: cc: Release main thread earlier (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix tests broken by raciness 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
« cc/trees/layer_tree_host_unittest.cc ('K') | « cc/trees/thread_proxy.h ('k') | 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 e60a29dc48cfe1f007881c85e917875a19cce1fb..0b7d7ef9ebe1519c734d49005591378d4359841f 100644
--- a/cc/trees/thread_proxy.cc
+++ b/cc/trees/thread_proxy.cc
@@ -92,7 +92,7 @@ ThreadProxy::ThreadProxy(
in_composite_and_readback_(false),
manage_tiles_pending_(false),
commit_waits_for_activation_(false),
- inside_commit_(false),
+ main_thread_inside_commit_(false),
begin_main_frame_sent_completion_event_on_impl_thread_(NULL),
readback_request_on_impl_thread_(NULL),
commit_completion_event_on_impl_thread_(NULL),
@@ -520,7 +520,7 @@ void ThreadProxy::SetNeedsRedraw(const gfx::Rect& damage_rect) {
void ThreadProxy::SetNextCommitWaitsForActivation() {
DCHECK(IsMainThread());
- DCHECK(!inside_commit_);
+ DCHECK(!main_thread_inside_commit_);
commit_waits_for_activation_ = true;
}
@@ -1019,18 +1019,11 @@ void ThreadProxy::ScheduledActionCommit() {
current_resource_update_controller_on_impl_thread_->Finalize();
current_resource_update_controller_on_impl_thread_.reset();
- inside_commit_ = true;
+ main_thread_inside_commit_ = true;
layer_tree_host_impl_->BeginCommit();
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;
+ main_thread_inside_commit_ = false;
bool hold_commit = layer_tree_host()->settings().impl_side_painting &&
commit_waits_for_activation_;
@@ -1049,6 +1042,17 @@ void ThreadProxy::ScheduledActionCommit() {
commit_completion_event_on_impl_thread_ = NULL;
}
+ // Delay this step until afer the main thread has been released as it's
+ // often a good bit of work to update the tree and prepare the new frame.
+ layer_tree_host_impl_->CommitComplete();
+
+ SetInputThrottledUntilCommitOnImplThread(false);
+
+ UpdateBackgroundAnimateTicking();
+
+ next_frame_is_newly_committed_frame_on_impl_thread_ = true;
+ commit_waits_for_activation_ = false;
+
commit_complete_time_ = base::TimeTicks::HighResNow();
begin_main_frame_to_commit_duration_history_.InsertSample(
commit_complete_time_ - begin_main_frame_sent_time_);
« cc/trees/layer_tree_host_unittest.cc ('K') | « cc/trees/thread_proxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698