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

Unified Diff: cc/debug/micro_benchmark_controller_unittest.cc

Issue 348093004: Make cc output surface creation async (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Android compile fixes Created 6 years, 3 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/debug/micro_benchmark_controller_unittest.cc
diff --git a/cc/debug/micro_benchmark_controller_unittest.cc b/cc/debug/micro_benchmark_controller_unittest.cc
index 83faeabf9a1fb714e6446584fafa38a099e3adf8..50021daf6ed70b740a5f8a5c5d13fae3de42e410 100644
--- a/cc/debug/micro_benchmark_controller_unittest.cc
+++ b/cc/debug/micro_benchmark_controller_unittest.cc
@@ -18,13 +18,16 @@ namespace {
class MicroBenchmarkControllerTest : public testing::Test {
public:
+ MicroBenchmarkControllerTest()
+ : layer_tree_host_client_(FakeLayerTreeHostClient::DIRECT_3D) {}
+
virtual void SetUp() OVERRIDE {
impl_proxy_ = make_scoped_ptr(new FakeImplProxy);
shared_bitmap_manager_.reset(new TestSharedBitmapManager());
layer_tree_host_impl_ = make_scoped_ptr(new FakeLayerTreeHostImpl(
impl_proxy_.get(), shared_bitmap_manager_.get()));
- layer_tree_host_ = FakeLayerTreeHost::Create();
+ layer_tree_host_ = FakeLayerTreeHost::Create(&layer_tree_host_client_);
layer_tree_host_->SetRootLayer(Layer::Create());
layer_tree_host_->InitializeForTesting(scoped_ptr<Proxy>(new FakeProxy));
}
@@ -35,6 +38,7 @@ class MicroBenchmarkControllerTest : public testing::Test {
impl_proxy_.reset();
}
+ FakeLayerTreeHostClient layer_tree_host_client_;
scoped_ptr<FakeLayerTreeHost> layer_tree_host_;
scoped_ptr<SharedBitmapManager> shared_bitmap_manager_;
scoped_ptr<FakeLayerTreeHostImpl> layer_tree_host_impl_;

Powered by Google App Engine
This is Rietveld 408576698