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

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

Issue 2884423003: Use scroll-boundary-behavior to control overscroll-refresh/glow on android. (Closed)
Patch Set: Update input_messages with the order in the enum. Created 3 years, 4 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 #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
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 944 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 } 993 }
993 994
994 void LayerTreeHost::SetBrowserControlsShownRatio(float ratio) { 995 void LayerTreeHost::SetBrowserControlsShownRatio(float ratio) {
995 if (top_controls_shown_ratio_ == ratio) 996 if (top_controls_shown_ratio_ == ratio)
996 return; 997 return;
997 998
998 top_controls_shown_ratio_ = ratio; 999 top_controls_shown_ratio_ = ratio;
999 SetNeedsCommit(); 1000 SetNeedsCommit();
1000 } 1001 }
1001 1002
1003 void LayerTreeHost::SetScrollBoundaryBehavior(
1004 const ScrollBoundaryBehavior& behavior) {
1005 if (scroll_boundary_behavior_ == behavior)
1006 return;
1007 scroll_boundary_behavior_ = behavior;
1008 SetNeedsCommit();
1009 }
1010
1002 void LayerTreeHost::SetPageScaleFactorAndLimits(float page_scale_factor, 1011 void LayerTreeHost::SetPageScaleFactorAndLimits(float page_scale_factor,
1003 float min_page_scale_factor, 1012 float min_page_scale_factor,
1004 float max_page_scale_factor) { 1013 float max_page_scale_factor) {
1005 if (page_scale_factor_ == page_scale_factor && 1014 if (page_scale_factor_ == page_scale_factor &&
1006 min_page_scale_factor_ == min_page_scale_factor && 1015 min_page_scale_factor_ == min_page_scale_factor &&
1007 max_page_scale_factor_ == max_page_scale_factor) 1016 max_page_scale_factor_ == max_page_scale_factor)
1008 return; 1017 return;
1009 1018
1010 page_scale_factor_ = page_scale_factor; 1019 page_scale_factor_ = page_scale_factor;
1011 min_page_scale_factor_ = min_page_scale_factor; 1020 min_page_scale_factor_ = min_page_scale_factor;
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
1244 1253
1245 tree_impl->RegisterSelection(selection_); 1254 tree_impl->RegisterSelection(selection_);
1246 1255
1247 tree_impl->PushPageScaleFromMainThread( 1256 tree_impl->PushPageScaleFromMainThread(
1248 page_scale_factor_, min_page_scale_factor_, max_page_scale_factor_); 1257 page_scale_factor_, min_page_scale_factor_, max_page_scale_factor_);
1249 1258
1250 tree_impl->set_browser_controls_shrink_blink_size( 1259 tree_impl->set_browser_controls_shrink_blink_size(
1251 browser_controls_shrink_blink_size_); 1260 browser_controls_shrink_blink_size_);
1252 tree_impl->set_top_controls_height(top_controls_height_); 1261 tree_impl->set_top_controls_height(top_controls_height_);
1253 tree_impl->set_bottom_controls_height(bottom_controls_height_); 1262 tree_impl->set_bottom_controls_height(bottom_controls_height_);
1263 tree_impl->set_scroll_boundary_behavior(scroll_boundary_behavior_);
1254 tree_impl->PushBrowserControlsFromMainThread(top_controls_shown_ratio_); 1264 tree_impl->PushBrowserControlsFromMainThread(top_controls_shown_ratio_);
1255 tree_impl->elastic_overscroll()->PushFromMainThread(elastic_overscroll_); 1265 tree_impl->elastic_overscroll()->PushFromMainThread(elastic_overscroll_);
1256 if (tree_impl->IsActiveTree()) 1266 if (tree_impl->IsActiveTree())
1257 tree_impl->elastic_overscroll()->PushPendingToActive(); 1267 tree_impl->elastic_overscroll()->PushPendingToActive();
1258 1268
1259 tree_impl->set_painted_device_scale_factor(painted_device_scale_factor_); 1269 tree_impl->set_painted_device_scale_factor(painted_device_scale_factor_);
1260 1270
1261 tree_impl->SetRasterColorSpace(raster_color_space_); 1271 tree_impl->SetRasterColorSpace(raster_color_space_);
1262 1272
1263 tree_impl->set_content_source_id(content_source_id_); 1273 tree_impl->set_content_source_id(content_source_id_);
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
1475 1485
1476 void LayerTreeHost::SetHasCopyRequest(bool has_copy_request) { 1486 void LayerTreeHost::SetHasCopyRequest(bool has_copy_request) {
1477 has_copy_request_ = has_copy_request; 1487 has_copy_request_ = has_copy_request;
1478 } 1488 }
1479 1489
1480 void LayerTreeHost::RequestBeginMainFrameNotExpected(bool new_state) { 1490 void LayerTreeHost::RequestBeginMainFrameNotExpected(bool new_state) {
1481 proxy_->RequestBeginMainFrameNotExpected(new_state); 1491 proxy_->RequestBeginMainFrameNotExpected(new_state);
1482 } 1492 }
1483 1493
1484 } // namespace cc 1494 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698