| 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 53dbf17ab87ae4afd239610815bc17ecd7c6b4e7..edba4bfafb4cf823f7913ba26ff4b58de6fd6e50 100644
|
| --- a/cc/trees/layer_tree_host_impl.h
|
| +++ b/cc/trees/layer_tree_host_impl.h
|
| @@ -619,16 +619,6 @@ class CC_EXPORT LayerTreeHostImpl
|
| void SetLayerTreeMutator(std::unique_ptr<LayerTreeMutator> mutator);
|
| LayerTreeMutator* mutator() { return mutator_.get(); }
|
|
|
| - void set_fixed_raster_scale_has_blurry_content() {
|
| - has_fixed_raster_scale_blurry_content_ = true;
|
| - }
|
| - bool has_fixed_raster_scale_blurry_content() const {
|
| - return has_fixed_raster_scale_blurry_content_;
|
| - }
|
| -
|
| - bool HasFixedRasterScalePotentialPerformanceRegression() const;
|
| - void SetFixedRasterScaleAttemptedToChangeScale();
|
| -
|
| protected:
|
| LayerTreeHostImpl(
|
| const LayerTreeSettings& settings,
|
| @@ -657,9 +647,6 @@ class CC_EXPORT LayerTreeHostImpl
|
| BeginFrameTracker current_begin_frame_tracker_;
|
|
|
| private:
|
| - enum { kFixedRasterScaleAttemptedScaleChangeThreshold = 5 };
|
| - enum { kFixedRasterScaleAttemptedScaleChangeHistoryCount = 10 };
|
| -
|
| gfx::Vector2dF ScrollNodeWithViewportSpaceDelta(
|
| ScrollNode* scroll_node,
|
| const gfx::PointF& viewport_point,
|
| @@ -862,9 +849,6 @@ class CC_EXPORT LayerTreeHostImpl
|
|
|
| std::unique_ptr<LayerTreeMutator> mutator_;
|
|
|
| - bool has_fixed_raster_scale_blurry_content_;
|
| - std::bitset<kFixedRasterScaleAttemptedScaleChangeHistoryCount>
|
| - fixed_raster_scale_attempted_scale_change_history_;
|
| std::unique_ptr<PendingTreeDurationHistogramTimer>
|
| pending_tree_duration_timer_;
|
|
|
|
|