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

Unified Diff: cc/trees/layer_tree_host_unittest_delegated.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
Index: cc/trees/layer_tree_host_unittest_delegated.cc
diff --git a/cc/trees/layer_tree_host_unittest_delegated.cc b/cc/trees/layer_tree_host_unittest_delegated.cc
index b5c400c74e50c0fa1ed2c28f897edf40fb0c5b88..b935423f7737250bb689259cae663d0107ff62ee 100644
--- a/cc/trees/layer_tree_host_unittest_delegated.cc
+++ b/cc/trees/layer_tree_host_unittest_delegated.cc
@@ -1856,12 +1856,7 @@ SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostDelegatedTestCommitWithoutTake);
class DelegatedFrameIsActivatedDuringCommit
: public LayerTreeHostDelegatedTestCaseSingleDelegatedLayer {
protected:
- DelegatedFrameIsActivatedDuringCommit()
- : wait_thread_("WAIT"),
- wait_event_(false, false),
- returned_resource_count_(0) {
- wait_thread_.Start();
- }
+ DelegatedFrameIsActivatedDuringCommit() : returned_resource_count_(0) {}
virtual void BeginTest() OVERRIDE {
activate_count_ = 0;
@@ -1876,31 +1871,11 @@ class DelegatedFrameIsActivatedDuringCommit
}
virtual void WillActivateTreeOnThread(LayerTreeHostImpl* impl) OVERRIDE {
- // Slow down activation so the main thread DidCommit() will run if
- // not blocked.
- wait_thread_.message_loop()->PostDelayedTask(
- FROM_HERE,
- base::Bind(&base::WaitableEvent::Signal,
- base::Unretained(&wait_event_)),
- base::TimeDelta::FromMilliseconds(10));
- wait_event_.Wait();
-
- base::AutoLock lock(activate_lock_);
++activate_count_;
}
- virtual void DidActivateTreeOnThread(LayerTreeHostImpl* impl) OVERRIDE {
- // The main thread is awake now, and will run DidCommit() immediately.
- // Run DidActivate() afterwards by posting it now.
- proxy()->MainThreadTaskRunner()->PostTask(
- FROM_HERE,
- base::Bind(&DelegatedFrameIsActivatedDuringCommit::DidActivate,
- base::Unretained(this)));
- }
-
- void DidActivate() {
- base::AutoLock lock(activate_lock_);
- switch (activate_count_) {
+ virtual void DidCommit() OVERRIDE {
+ switch (layer_tree_host()->source_frame_number()) {
case 1: {
// The first frame has been activated. Set a new frame, and
// expect the next commit to finish *after* it is activated.
@@ -1909,8 +1884,6 @@ class DelegatedFrameIsActivatedDuringCommit
AddTextureQuad(frame.get(), 555);
AddTransferableResource(frame.get(), 555);
SetFrameData(frame.Pass());
- // So this commit number should complete after the second activate.
- EXPECT_EQ(1, layer_tree_host()->source_frame_number());
break;
}
case 2:
@@ -1918,28 +1891,26 @@ class DelegatedFrameIsActivatedDuringCommit
// the tree to cause another commit/activation. The commit should
// finish *after* the layer is removed from the active tree.
delegated_->RemoveFromParent();
- // So this commit number should complete after the third activate.
- EXPECT_EQ(2, layer_tree_host()->source_frame_number());
+ break;
+ case 3:
+ // Finish the test by releasing resources on the next frame.
+ scoped_ptr<DelegatedFrameData> frame =
+ CreateFrameData(gfx::Rect(0, 0, 1, 1), gfx::Rect(0, 0, 1, 1));
+ SetFrameData(frame.Pass());
break;
}
}
- virtual void DidCommit() OVERRIDE {
- switch (layer_tree_host()->source_frame_number()) {
+ virtual void CommitCompleteOnThread(LayerTreeHostImpl* host_impl) OVERRIDE {
+ switch (host_impl->active_tree()->source_frame_number()) {
case 2: {
// The activate for the 2nd frame should have happened before now.
- base::AutoLock lock(activate_lock_);
EXPECT_EQ(2, activate_count_);
break;
}
case 3: {
// The activate to remove the layer should have happened before now.
- base::AutoLock lock(activate_lock_);
EXPECT_EQ(3, activate_count_);
-
- scoped_ptr<DelegatedFrameData> frame =
- CreateFrameData(gfx::Rect(0, 0, 1, 1), gfx::Rect(0, 0, 1, 1));
- SetFrameData(frame.Pass());
break;
}
}
@@ -1961,9 +1932,6 @@ class DelegatedFrameIsActivatedDuringCommit
EndTest();
}
- base::Thread wait_thread_;
- base::WaitableEvent wait_event_;
- base::Lock activate_lock_;
int activate_count_;
size_t returned_resource_count_;
};

Powered by Google App Engine
This is Rietveld 408576698