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

Unified Diff: cc/trees/layer_tree_host_unittest.cc

Issue 634083002: gpu: Compositor management of GpuMemoryBuffer instances. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cc-pre-chromium-image-refactor
Patch Set: rebase Created 6 years, 2 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
« no previous file with comments | « cc/trees/layer_tree_host_impl_unittest.cc ('k') | cc/trees/layer_tree_host_unittest_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_host_unittest.cc
diff --git a/cc/trees/layer_tree_host_unittest.cc b/cc/trees/layer_tree_host_unittest.cc
index 8f39eceda9365566fb00625f12563638b0985066..2881f62a5058832a8fb4236dca5f2893782a8c93 100644
--- a/cc/trees/layer_tree_host_unittest.cc
+++ b/cc/trees/layer_tree_host_unittest.cc
@@ -1903,7 +1903,7 @@ class LayerTreeHostWithProxy : public LayerTreeHost {
LayerTreeHostWithProxy(FakeLayerTreeHostClient* client,
const LayerTreeSettings& settings,
scoped_ptr<FakeProxy> proxy)
- : LayerTreeHost(client, NULL, settings) {
+ : LayerTreeHost(client, NULL, NULL, settings) {
proxy->SetLayerTreeHost(this);
client->SetLayerTreeHost(this);
InitializeForTesting(proxy.Pass());
@@ -1978,6 +1978,7 @@ TEST(LayerTreeHostTest, PartialUpdatesWithGLRenderer) {
LayerTreeHost::CreateSingleThreaded(&client,
&client,
shared_bitmap_manager.get(),
+ NULL,
settings,
base::MessageLoopProxy::current());
client.SetLayerTreeHost(host.get());
@@ -1999,6 +2000,7 @@ TEST(LayerTreeHostTest, PartialUpdatesWithSoftwareRenderer) {
LayerTreeHost::CreateSingleThreaded(&client,
&client,
shared_bitmap_manager.get(),
+ NULL,
settings,
base::MessageLoopProxy::current());
client.SetLayerTreeHost(host.get());
@@ -2020,6 +2022,7 @@ TEST(LayerTreeHostTest, PartialUpdatesWithDelegatingRendererAndGLContent) {
LayerTreeHost::CreateSingleThreaded(&client,
&client,
shared_bitmap_manager.get(),
+ NULL,
settings,
base::MessageLoopProxy::current());
client.SetLayerTreeHost(host.get());
@@ -2042,6 +2045,7 @@ TEST(LayerTreeHostTest,
LayerTreeHost::CreateSingleThreaded(&client,
&client,
shared_bitmap_manager.get(),
+ NULL,
settings,
base::MessageLoopProxy::current());
client.SetLayerTreeHost(host.get());
« no previous file with comments | « cc/trees/layer_tree_host_impl_unittest.cc ('k') | cc/trees/layer_tree_host_unittest_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698