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

Unified Diff: cc/test/fake_layer_tree_host.cc

Issue 2646623002: cc: Remove all blimp code from cc. (Closed)
Patch Set: test build Created 3 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
« no previous file with comments | « cc/test/fake_layer_tree_host.h ('k') | cc/test/fake_picture_layer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_layer_tree_host.cc
diff --git a/cc/test/fake_layer_tree_host.cc b/cc/test/fake_layer_tree_host.cc
index 44d6299f396a01085e2a1e0cdadb2cbd8f86597e..6143a46da634b85a96b8dbe6efd4674bfb061ee4 100644
--- a/cc/test/fake_layer_tree_host.cc
+++ b/cc/test/fake_layer_tree_host.cc
@@ -8,7 +8,6 @@
#include "base/threading/thread_task_runner_handle.h"
#include "cc/animation/animation_host.h"
#include "cc/layers/layer.h"
-#include "cc/test/fake_image_serialization_processor.h"
#include "cc/test/test_task_graph_runner.h"
#include "cc/trees/layer_tree.h"
#include "cc/trees/mutator_host.h"
@@ -79,22 +78,6 @@ std::unique_ptr<FakeLayerTreeHost> FakeLayerTreeHost::Create(
return base::WrapUnique(new FakeLayerTreeHost(client, &params, mode));
}
-std::unique_ptr<FakeLayerTreeHost> FakeLayerTreeHost::Create(
- FakeLayerTreeHostClient* client,
- TestTaskGraphRunner* task_graph_runner,
- MutatorHost* mutator_host,
- const LayerTreeSettings& settings,
- CompositorMode mode,
- ImageSerializationProcessor* image_serialization_processor) {
- LayerTreeHostInProcess::InitParams params;
- params.client = client;
- params.settings = &settings;
- params.task_graph_runner = task_graph_runner;
- params.image_serialization_processor = image_serialization_processor;
- params.mutator_host = mutator_host;
- return base::WrapUnique(new FakeLayerTreeHost(client, &params, mode));
-}
-
FakeLayerTreeHost::~FakeLayerTreeHost() {
client_->SetLayerTreeHost(NULL);
}
« no previous file with comments | « cc/test/fake_layer_tree_host.h ('k') | cc/test/fake_picture_layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698