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

Side by Side Diff: cc/trees/layer_tree_host.h

Issue 1982893002: [blimp] Add SkPicture caching support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge origin/master Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_TREES_LAYER_TREE_HOST_H_ 5 #ifndef CC_TREES_LAYER_TREE_HOST_H_
6 #define CC_TREES_LAYER_TREE_HOST_H_ 6 #define CC_TREES_LAYER_TREE_HOST_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 16 matching lines...) Expand all
27 #include "cc/input/event_listener_properties.h" 27 #include "cc/input/event_listener_properties.h"
28 #include "cc/input/input_handler.h" 28 #include "cc/input/input_handler.h"
29 #include "cc/input/layer_selection_bound.h" 29 #include "cc/input/layer_selection_bound.h"
30 #include "cc/input/scrollbar.h" 30 #include "cc/input/scrollbar.h"
31 #include "cc/input/top_controls_state.h" 31 #include "cc/input/top_controls_state.h"
32 #include "cc/layers/layer_collections.h" 32 #include "cc/layers/layer_collections.h"
33 #include "cc/layers/layer_list_iterator.h" 33 #include "cc/layers/layer_list_iterator.h"
34 #include "cc/output/output_surface.h" 34 #include "cc/output/output_surface.h"
35 #include "cc/output/renderer_capabilities.h" 35 #include "cc/output/renderer_capabilities.h"
36 #include "cc/output/swap_promise.h" 36 #include "cc/output/swap_promise.h"
37 #include "cc/proto/client_picture_cache.h"
38 #include "cc/proto/engine_picture_cache.h"
37 #include "cc/resources/resource_format.h" 39 #include "cc/resources/resource_format.h"
38 #include "cc/resources/scoped_ui_resource.h" 40 #include "cc/resources/scoped_ui_resource.h"
39 #include "cc/surfaces/surface_sequence.h" 41 #include "cc/surfaces/surface_sequence.h"
40 #include "cc/trees/compositor_mode.h" 42 #include "cc/trees/compositor_mode.h"
41 #include "cc/trees/layer_tree_host_client.h" 43 #include "cc/trees/layer_tree_host_client.h"
42 #include "cc/trees/layer_tree_settings.h" 44 #include "cc/trees/layer_tree_settings.h"
43 #include "cc/trees/mutator_host_client.h" 45 #include "cc/trees/mutator_host_client.h"
44 #include "cc/trees/proxy.h" 46 #include "cc/trees/proxy.h"
45 #include "cc/trees/swap_promise_monitor.h" 47 #include "cc/trees/swap_promise_monitor.h"
46 #include "third_party/skia/include/core/SkColor.h" 48 #include "third_party/skia/include/core/SkColor.h"
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 bool IsSingleThreaded() const; 421 bool IsSingleThreaded() const;
420 bool IsThreaded() const; 422 bool IsThreaded() const;
421 bool IsRemoteServer() const; 423 bool IsRemoteServer() const;
422 bool IsRemoteClient() const; 424 bool IsRemoteClient() const;
423 void BuildPropertyTreesForTesting(); 425 void BuildPropertyTreesForTesting();
424 426
425 ImageSerializationProcessor* image_serialization_processor() const { 427 ImageSerializationProcessor* image_serialization_processor() const {
426 return image_serialization_processor_; 428 return image_serialization_processor_;
427 } 429 }
428 430
431 EnginePictureCache* engine_picture_cache() const {
432 return engine_picture_cache_ ? engine_picture_cache_.get() : nullptr;
433 }
434
435 ClientPictureCache* client_picture_cache() const {
436 return client_picture_cache_ ? client_picture_cache_.get() : nullptr;
437 }
438
429 protected: 439 protected:
430 LayerTreeHost(InitParams* params, CompositorMode mode); 440 LayerTreeHost(InitParams* params, CompositorMode mode);
431 void InitializeThreaded( 441 void InitializeThreaded(
432 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, 442 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
433 scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner, 443 scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner,
434 std::unique_ptr<BeginFrameSource> external_begin_frame_source); 444 std::unique_ptr<BeginFrameSource> external_begin_frame_source);
435 void InitializeSingleThreaded( 445 void InitializeSingleThreaded(
436 LayerTreeHostSingleThreadClient* single_thread_client, 446 LayerTreeHostSingleThreadClient* single_thread_client,
437 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, 447 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
438 std::unique_ptr<BeginFrameSource> external_begin_frame_source); 448 std::unique_ptr<BeginFrameSource> external_begin_frame_source);
439 void InitializeRemoteServer( 449 void InitializeRemoteServer(
440 RemoteProtoChannel* remote_proto_channel, 450 RemoteProtoChannel* remote_proto_channel,
441 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner); 451 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner);
442 void InitializeRemoteClient( 452 void InitializeRemoteClient(
443 RemoteProtoChannel* remote_proto_channel, 453 RemoteProtoChannel* remote_proto_channel,
444 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, 454 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
445 scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner); 455 scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner);
446 void InitializeForTesting( 456 void InitializeForTesting(
447 std::unique_ptr<TaskRunnerProvider> task_runner_provider, 457 std::unique_ptr<TaskRunnerProvider> task_runner_provider,
448 std::unique_ptr<Proxy> proxy_for_testing, 458 std::unique_ptr<Proxy> proxy_for_testing,
449 std::unique_ptr<BeginFrameSource> external_begin_frame_source); 459 std::unique_ptr<BeginFrameSource> external_begin_frame_source);
460 void InitializePictureCacheForTesting();
450 void SetOutputSurfaceLostForTesting(bool is_lost) { 461 void SetOutputSurfaceLostForTesting(bool is_lost) {
451 output_surface_lost_ = is_lost; 462 output_surface_lost_ = is_lost;
452 } 463 }
453 void SetTaskRunnerProviderForTesting( 464 void SetTaskRunnerProviderForTesting(
454 std::unique_ptr<TaskRunnerProvider> task_runner_provider); 465 std::unique_ptr<TaskRunnerProvider> task_runner_provider);
455 466
456 // shared_bitmap_manager(), gpu_memory_buffer_manager(), and 467 // shared_bitmap_manager(), gpu_memory_buffer_manager(), and
457 // task_graph_runner() return valid values only until the LayerTreeHostImpl is 468 // task_graph_runner() return valid values only until the LayerTreeHostImpl is
458 // created in CreateLayerTreeHostImpl(). 469 // created in CreateLayerTreeHostImpl().
459 SharedBitmapManager* shared_bitmap_manager() const { 470 SharedBitmapManager* shared_bitmap_manager() const {
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 scoped_refptr<Layer> inner_viewport_scroll_layer_; 584 scoped_refptr<Layer> inner_viewport_scroll_layer_;
574 scoped_refptr<Layer> outer_viewport_scroll_layer_; 585 scoped_refptr<Layer> outer_viewport_scroll_layer_;
575 586
576 LayerSelection selection_; 587 LayerSelection selection_;
577 588
578 SharedBitmapManager* shared_bitmap_manager_; 589 SharedBitmapManager* shared_bitmap_manager_;
579 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager_; 590 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager_;
580 TaskGraphRunner* task_graph_runner_; 591 TaskGraphRunner* task_graph_runner_;
581 592
582 ImageSerializationProcessor* image_serialization_processor_; 593 ImageSerializationProcessor* image_serialization_processor_;
594 std::unique_ptr<EnginePictureCache> engine_picture_cache_;
595 std::unique_ptr<ClientPictureCache> client_picture_cache_;
583 596
584 std::vector<std::unique_ptr<SwapPromise>> swap_promise_list_; 597 std::vector<std::unique_ptr<SwapPromise>> swap_promise_list_;
585 std::set<SwapPromiseMonitor*> swap_promise_monitor_; 598 std::set<SwapPromiseMonitor*> swap_promise_monitor_;
586 599
587 PropertyTrees property_trees_; 600 PropertyTrees property_trees_;
588 601
589 using LayerIdMap = std::unordered_map<int, Layer*>; 602 using LayerIdMap = std::unordered_map<int, Layer*>;
590 LayerIdMap layer_id_map_; 603 LayerIdMap layer_id_map_;
591 // Set of layers that need to push properties. 604 // Set of layers that need to push properties.
592 std::unordered_set<Layer*> layers_that_should_push_properties_; 605 std::unordered_set<Layer*> layers_that_should_push_properties_;
593 606
594 uint32_t surface_id_namespace_; 607 uint32_t surface_id_namespace_;
595 uint32_t next_surface_sequence_; 608 uint32_t next_surface_sequence_;
596 609
597 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); 610 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost);
598 }; 611 };
599 612
600 } // namespace cc 613 } // namespace cc
601 614
602 #endif // CC_TREES_LAYER_TREE_HOST_H_ 615 #endif // CC_TREES_LAYER_TREE_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698