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

Unified Diff: cc/test/layer_tree_test.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/test/layer_tree_test.cc
diff --git a/cc/test/layer_tree_test.cc b/cc/test/layer_tree_test.cc
index 36621d01dec5f59a1af8d0a4faa3ce853915d02a..373f92bdfe95cdec3a43302849a999db4690ac65 100644
--- a/cc/test/layer_tree_test.cc
+++ b/cc/test/layer_tree_test.cc
@@ -23,6 +23,7 @@
#include "cc/trees/layer_tree_host_client.h"
#include "cc/trees/layer_tree_host_impl.h"
#include "cc/trees/layer_tree_host_single_thread_client.h"
+#include "cc/trees/layer_tree_impl.h"
#include "cc/trees/single_thread_proxy.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "ui/gfx/frame_time.h"
@@ -700,4 +701,14 @@ TestWebGraphicsContext3D* LayerTreeTest::TestContext() {
output_surface_->context_provider().get())->TestContext3d();
}
+int LayerTreeTest::LastCommittedSourceFrameNumber(LayerTreeHostImpl* impl)
+ const {
+ if (impl->pending_tree())
+ return impl->pending_tree()->source_frame_number();
+ if (impl->active_tree())
+ return impl->active_tree()->source_frame_number();
+ // Source frames start at 0, so this is invalid.
+ return -1;
+}
+
} // namespace cc

Powered by Google App Engine
This is Rietveld 408576698