| Index: cc/trees/layer_tree_host_impl.h
|
| diff --git a/cc/trees/layer_tree_host_impl.h b/cc/trees/layer_tree_host_impl.h
|
| index 450b2721bc9c1f4b6662e3706f624bedf3968797..0dc7320bcf81d14f58ecc10ee59aa508a7dfac92 100644
|
| --- a/cc/trees/layer_tree_host_impl.h
|
| +++ b/cc/trees/layer_tree_host_impl.h
|
| @@ -483,6 +483,9 @@ class CC_EXPORT LayerTreeHostImpl
|
| void ResetRequiresHighResToDraw() { requires_high_res_to_draw_ = false; }
|
| bool RequiresHighResToDraw() const { return requires_high_res_to_draw_; }
|
|
|
| + // Only valid for synchronous (non-scheduled) single-threaded case.
|
| + void SynchronouslyInitializeAllTiles();
|
| +
|
| protected:
|
| LayerTreeHostImpl(
|
| const LayerTreeSettings& settings,
|
| @@ -519,7 +522,7 @@ class CC_EXPORT LayerTreeHostImpl
|
| void EnforceZeroBudget(bool zero_budget);
|
|
|
| bool UsePendingTreeForSync() const;
|
| - bool UseZeroCopyRasterizer() const;
|
| + bool CanUseZeroCopyRasterizer() const;
|
| bool UseOneCopyRasterizer() const;
|
|
|
| // Scroll by preferring to move the outer viewport first, only moving the
|
| @@ -694,6 +697,7 @@ class CC_EXPORT LayerTreeHostImpl
|
|
|
| RenderingStatsInstrumentation* rendering_stats_instrumentation_;
|
| MicroBenchmarkControllerImpl micro_benchmark_controller_;
|
| + scoped_ptr<TaskGraphRunner> single_thread_synchronous_task_graph_runner_;
|
|
|
| bool need_to_update_visible_tiles_before_draw_;
|
|
|
|
|