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

Unified Diff: cc/test/layer_tree_host_common_test.h

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/test/layer_tree_host_common_test.h
diff --git a/cc/test/layer_tree_host_common_test.h b/cc/test/layer_tree_host_common_test.h
index 67eb6cc58b3da0af29b229a57c1154352fc5c0ef..f5dc48ea3a34f6de29b5a9022a6a3edf94c5998c 100644
--- a/cc/test/layer_tree_host_common_test.h
+++ b/cc/test/layer_tree_host_common_test.h
@@ -9,6 +9,7 @@
#include "base/memory/scoped_ptr.h"
#include "cc/layers/layer_lists.h"
+#include "cc/test/fake_layer_tree_host_client.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace gfx {
@@ -20,6 +21,7 @@ class Transform;
namespace cc {
+class FakeLayerTreeHost;
class Layer;
class LayerImpl;
class RenderSurfaceLayerList;
@@ -116,10 +118,13 @@ class LayerTreeHostCommonTestBase {
return render_surface_layer_list_count_;
}
+ scoped_ptr<FakeLayerTreeHost> CreateFakeLayerTreeHost();
+
private:
scoped_ptr<RenderSurfaceLayerList> render_surface_layer_list_;
scoped_ptr<std::vector<LayerImpl*> > render_surface_layer_list_impl_;
+ FakeLayerTreeHostClient client_;
int render_surface_layer_list_count_;
};

Powered by Google App Engine
This is Rietveld 408576698