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

Unified Diff: cc/trees/layer_tree_host_in_process.h

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/trees/layer_tree.cc ('k') | cc/trees/layer_tree_host_in_process.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_host_in_process.h
diff --git a/cc/trees/layer_tree_host_in_process.h b/cc/trees/layer_tree_host_in_process.h
index 7d11066fb07a773b60985951ff99105194bbba27..27fd5e9dcb00cf5e5fd30caadc893fc43b811216 100644
--- a/cc/trees/layer_tree_host_in_process.h
+++ b/cc/trees/layer_tree_host_in_process.h
@@ -47,9 +47,6 @@
namespace cc {
class MutatorEvents;
-class ClientPictureCache;
-class EnginePictureCache;
-class ImageSerializationProcessor;
class Layer;
class LayerTreeHostClient;
class LayerTreeHostImpl;
@@ -73,7 +70,6 @@ class CC_EXPORT LayerTreeHostInProcess : public LayerTreeHost {
TaskGraphRunner* task_graph_runner = nullptr;
LayerTreeSettings const* settings = nullptr;
scoped_refptr<base::SingleThreadTaskRunner> main_task_runner;
- ImageSerializationProcessor* image_serialization_processor = nullptr;
MutatorHost* mutator_host = nullptr;
scoped_refptr<base::SequencedTaskRunner> image_worker_task_runner;
@@ -193,18 +189,6 @@ class CC_EXPORT LayerTreeHostInProcess : public LayerTreeHost {
bool IsSingleThreaded() const;
bool IsThreaded() const;
- ImageSerializationProcessor* image_serialization_processor() const {
- return image_serialization_processor_;
- }
-
- EnginePictureCache* engine_picture_cache() const {
- return engine_picture_cache_ ? engine_picture_cache_.get() : nullptr;
- }
-
- ClientPictureCache* client_picture_cache() const {
- return client_picture_cache_ ? client_picture_cache_.get() : nullptr;
- }
-
protected:
// Allow tests to inject the LayerTree.
LayerTreeHostInProcess(InitParams* params,
@@ -221,7 +205,6 @@ class CC_EXPORT LayerTreeHostInProcess : public LayerTreeHost {
void InitializeForTesting(
std::unique_ptr<TaskRunnerProvider> task_runner_provider,
std::unique_ptr<Proxy> proxy_for_testing);
- void InitializePictureCacheForTesting();
void SetTaskRunnerProviderForTesting(
std::unique_ptr<TaskRunnerProvider> task_runner_provider);
void SetUIResourceManagerForTesting(
@@ -305,10 +288,6 @@ class CC_EXPORT LayerTreeHostInProcess : public LayerTreeHost {
TaskGraphRunner* task_graph_runner_;
- ImageSerializationProcessor* image_serialization_processor_;
- std::unique_ptr<EnginePictureCache> engine_picture_cache_;
- std::unique_ptr<ClientPictureCache> client_picture_cache_;
-
SurfaceSequenceGenerator surface_sequence_generator_;
uint32_t num_consecutive_frames_suitable_for_gpu_ = 0;
« no previous file with comments | « cc/trees/layer_tree.cc ('k') | cc/trees/layer_tree_host_in_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698