| OLD | NEW |
| 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 #include "cc/trees/layer_tree_host.h" | 5 #include "cc/trees/layer_tree_host.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <algorithm> | 10 #include <algorithm> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "base/threading/thread_task_runner_handle.h" | 28 #include "base/threading/thread_task_runner_handle.h" |
| 29 #include "base/timer/elapsed_timer.h" | 29 #include "base/timer/elapsed_timer.h" |
| 30 #include "base/trace_event/trace_event.h" | 30 #include "base/trace_event/trace_event.h" |
| 31 #include "base/trace_event/trace_event_argument.h" | 31 #include "base/trace_event/trace_event_argument.h" |
| 32 #include "cc/base/devtools_instrumentation.h" | 32 #include "cc/base/devtools_instrumentation.h" |
| 33 #include "cc/base/histograms.h" | 33 #include "cc/base/histograms.h" |
| 34 #include "cc/base/math_util.h" | 34 #include "cc/base/math_util.h" |
| 35 #include "cc/debug/rendering_stats_instrumentation.h" | 35 #include "cc/debug/rendering_stats_instrumentation.h" |
| 36 #include "cc/input/layer_selection_bound.h" | 36 #include "cc/input/layer_selection_bound.h" |
| 37 #include "cc/input/page_scale_animation.h" | 37 #include "cc/input/page_scale_animation.h" |
| 38 #include "cc/input/scroll_boundary_behavior.h" |
| 38 #include "cc/layers/heads_up_display_layer.h" | 39 #include "cc/layers/heads_up_display_layer.h" |
| 39 #include "cc/layers/heads_up_display_layer_impl.h" | 40 #include "cc/layers/heads_up_display_layer_impl.h" |
| 40 #include "cc/layers/layer.h" | 41 #include "cc/layers/layer.h" |
| 41 #include "cc/layers/painted_scrollbar_layer.h" | 42 #include "cc/layers/painted_scrollbar_layer.h" |
| 42 #include "cc/resources/ui_resource_manager.h" | 43 #include "cc/resources/ui_resource_manager.h" |
| 43 #include "cc/tiles/frame_viewer_instrumentation.h" | 44 #include "cc/tiles/frame_viewer_instrumentation.h" |
| 44 #include "cc/trees/clip_node.h" | 45 #include "cc/trees/clip_node.h" |
| 45 #include "cc/trees/draw_property_utils.h" | 46 #include "cc/trees/draw_property_utils.h" |
| 46 #include "cc/trees/effect_node.h" | 47 #include "cc/trees/effect_node.h" |
| 47 #include "cc/trees/layer_tree_host_client.h" | 48 #include "cc/trees/layer_tree_host_client.h" |
| (...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 } | 1001 } |
| 1001 | 1002 |
| 1002 void LayerTreeHost::SetBrowserControlsShownRatio(float ratio) { | 1003 void LayerTreeHost::SetBrowserControlsShownRatio(float ratio) { |
| 1003 if (top_controls_shown_ratio_ == ratio) | 1004 if (top_controls_shown_ratio_ == ratio) |
| 1004 return; | 1005 return; |
| 1005 | 1006 |
| 1006 top_controls_shown_ratio_ = ratio; | 1007 top_controls_shown_ratio_ = ratio; |
| 1007 SetNeedsCommit(); | 1008 SetNeedsCommit(); |
| 1008 } | 1009 } |
| 1009 | 1010 |
| 1011 void LayerTreeHost::SetScrollBoundaryBehavior( |
| 1012 const ScrollBoundaryBehavior& behavior) { |
| 1013 if (scroll_boundary_behavior_ == behavior) |
| 1014 return; |
| 1015 scroll_boundary_behavior_ = behavior; |
| 1016 SetNeedsCommit(); |
| 1017 } |
| 1018 |
| 1010 void LayerTreeHost::SetPageScaleFactorAndLimits(float page_scale_factor, | 1019 void LayerTreeHost::SetPageScaleFactorAndLimits(float page_scale_factor, |
| 1011 float min_page_scale_factor, | 1020 float min_page_scale_factor, |
| 1012 float max_page_scale_factor) { | 1021 float max_page_scale_factor) { |
| 1013 if (page_scale_factor_ == page_scale_factor && | 1022 if (page_scale_factor_ == page_scale_factor && |
| 1014 min_page_scale_factor_ == min_page_scale_factor && | 1023 min_page_scale_factor_ == min_page_scale_factor && |
| 1015 max_page_scale_factor_ == max_page_scale_factor) | 1024 max_page_scale_factor_ == max_page_scale_factor) |
| 1016 return; | 1025 return; |
| 1017 | 1026 |
| 1018 page_scale_factor_ = page_scale_factor; | 1027 page_scale_factor_ = page_scale_factor; |
| 1019 min_page_scale_factor_ = min_page_scale_factor; | 1028 min_page_scale_factor_ = min_page_scale_factor; |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1252 | 1261 |
| 1253 tree_impl->RegisterSelection(selection_); | 1262 tree_impl->RegisterSelection(selection_); |
| 1254 | 1263 |
| 1255 tree_impl->PushPageScaleFromMainThread( | 1264 tree_impl->PushPageScaleFromMainThread( |
| 1256 page_scale_factor_, min_page_scale_factor_, max_page_scale_factor_); | 1265 page_scale_factor_, min_page_scale_factor_, max_page_scale_factor_); |
| 1257 | 1266 |
| 1258 tree_impl->set_browser_controls_shrink_blink_size( | 1267 tree_impl->set_browser_controls_shrink_blink_size( |
| 1259 browser_controls_shrink_blink_size_); | 1268 browser_controls_shrink_blink_size_); |
| 1260 tree_impl->set_top_controls_height(top_controls_height_); | 1269 tree_impl->set_top_controls_height(top_controls_height_); |
| 1261 tree_impl->set_bottom_controls_height(bottom_controls_height_); | 1270 tree_impl->set_bottom_controls_height(bottom_controls_height_); |
| 1271 tree_impl->set_scroll_boundary_behavior(scroll_boundary_behavior_); |
| 1262 tree_impl->PushBrowserControlsFromMainThread(top_controls_shown_ratio_); | 1272 tree_impl->PushBrowserControlsFromMainThread(top_controls_shown_ratio_); |
| 1263 tree_impl->elastic_overscroll()->PushMainToPending(elastic_overscroll_); | 1273 tree_impl->elastic_overscroll()->PushMainToPending(elastic_overscroll_); |
| 1264 if (tree_impl->IsActiveTree()) | 1274 if (tree_impl->IsActiveTree()) |
| 1265 tree_impl->elastic_overscroll()->PushPendingToActive(); | 1275 tree_impl->elastic_overscroll()->PushPendingToActive(); |
| 1266 | 1276 |
| 1267 tree_impl->set_painted_device_scale_factor(painted_device_scale_factor_); | 1277 tree_impl->set_painted_device_scale_factor(painted_device_scale_factor_); |
| 1268 | 1278 |
| 1269 tree_impl->SetRasterColorSpace(raster_color_space_); | 1279 tree_impl->SetRasterColorSpace(raster_color_space_); |
| 1270 | 1280 |
| 1271 tree_impl->set_content_source_id(content_source_id_); | 1281 tree_impl->set_content_source_id(content_source_id_); |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1476 | 1486 |
| 1477 void LayerTreeHost::SetHasCopyRequest(bool has_copy_request) { | 1487 void LayerTreeHost::SetHasCopyRequest(bool has_copy_request) { |
| 1478 has_copy_request_ = has_copy_request; | 1488 has_copy_request_ = has_copy_request; |
| 1479 } | 1489 } |
| 1480 | 1490 |
| 1481 void LayerTreeHost::RequestBeginMainFrameNotExpected(bool new_state) { | 1491 void LayerTreeHost::RequestBeginMainFrameNotExpected(bool new_state) { |
| 1482 proxy_->RequestBeginMainFrameNotExpected(new_state); | 1492 proxy_->RequestBeginMainFrameNotExpected(new_state); |
| 1483 } | 1493 } |
| 1484 | 1494 |
| 1485 } // namespace cc | 1495 } // namespace cc |
| OLD | NEW |