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

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

Issue 222353002: Revert of Revert of Early terminate flings when scrolling impossible (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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
« no previous file with comments | « cc/trees/layer_tree_host_impl.cc ('k') | cc/trees/layer_tree_host_unittest_scroll.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_impl.h" 5 #include "cc/trees/layer_tree_host_impl.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 2968 matching lines...) Expand 10 before | Expand all | Expand 10 after
2979 EXPECT_EQ(current_offset.ToString(), 2979 EXPECT_EQ(current_offset.ToString(),
2980 scroll_layer->TotalScrollOffset().ToString()); 2980 scroll_layer->TotalScrollOffset().ToString());
2981 } 2981 }
2982 2982
2983 TEST_F(LayerTreeHostImplTest, OverscrollRoot) { 2983 TEST_F(LayerTreeHostImplTest, OverscrollRoot) {
2984 SetupScrollAndContentsLayers(gfx::Size(100, 100)); 2984 SetupScrollAndContentsLayers(gfx::Size(100, 100));
2985 host_impl_->SetViewportSize(gfx::Size(50, 50)); 2985 host_impl_->SetViewportSize(gfx::Size(50, 50));
2986 host_impl_->active_tree()->SetPageScaleFactorAndLimits(1.f, 0.5f, 4.f); 2986 host_impl_->active_tree()->SetPageScaleFactorAndLimits(1.f, 0.5f, 4.f);
2987 DrawFrame(); 2987 DrawFrame();
2988 EXPECT_EQ(gfx::Vector2dF(), host_impl_->accumulated_root_overscroll()); 2988 EXPECT_EQ(gfx::Vector2dF(), host_impl_->accumulated_root_overscroll());
2989 EXPECT_EQ(gfx::Vector2dF(), host_impl_->current_fling_velocity());
2990 2989
2991 // In-bounds scrolling does not affect overscroll. 2990 // In-bounds scrolling does not affect overscroll.
2992 EXPECT_EQ(InputHandler::ScrollStarted, 2991 EXPECT_EQ(InputHandler::ScrollStarted,
2993 host_impl_->ScrollBegin(gfx::Point(), InputHandler::Wheel)); 2992 host_impl_->ScrollBegin(gfx::Point(), InputHandler::Wheel));
2994 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, 10)); 2993 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, 10));
2995 EXPECT_EQ(gfx::Vector2dF(), host_impl_->accumulated_root_overscroll()); 2994 EXPECT_EQ(gfx::Vector2dF(), host_impl_->accumulated_root_overscroll());
2996 EXPECT_EQ(gfx::Vector2dF(), host_impl_->current_fling_velocity());
2997 2995
2998 // Overscroll events are reflected immediately. 2996 // Overscroll events are reflected immediately.
2999 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, 50)); 2997 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, 50));
3000 EXPECT_EQ(gfx::Vector2dF(0, 10), host_impl_->accumulated_root_overscroll()); 2998 EXPECT_EQ(gfx::Vector2dF(0, 10), host_impl_->accumulated_root_overscroll());
3001 EXPECT_EQ(gfx::Vector2dF(), host_impl_->current_fling_velocity());
3002 2999
3003 // In-bounds scrolling resets accumulated overscroll for the scrolled axes. 3000 // In-bounds scrolling resets accumulated overscroll for the scrolled axes.
3004 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, -50)); 3001 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, -50));
3005 EXPECT_EQ(gfx::Vector2dF(0, 0), host_impl_->accumulated_root_overscroll()); 3002 EXPECT_EQ(gfx::Vector2dF(0, 0), host_impl_->accumulated_root_overscroll());
3006 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, -10)); 3003 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, -10));
3007 EXPECT_EQ(gfx::Vector2dF(0, -10), host_impl_->accumulated_root_overscroll()); 3004 EXPECT_EQ(gfx::Vector2dF(0, -10), host_impl_->accumulated_root_overscroll());
3008 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(10, 0)); 3005 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(10, 0));
3009 EXPECT_EQ(gfx::Vector2dF(0, -10), host_impl_->accumulated_root_overscroll()); 3006 EXPECT_EQ(gfx::Vector2dF(0, -10), host_impl_->accumulated_root_overscroll());
3010 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(-15, 0)); 3007 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(-15, 0));
3011 EXPECT_EQ(gfx::Vector2dF(-5, -10), host_impl_->accumulated_root_overscroll()); 3008 EXPECT_EQ(gfx::Vector2dF(-5, -10), host_impl_->accumulated_root_overscroll());
3012 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, 60)); 3009 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, 60));
3013 EXPECT_EQ(gfx::Vector2dF(-5, 10), host_impl_->accumulated_root_overscroll()); 3010 EXPECT_EQ(gfx::Vector2dF(-5, 10), host_impl_->accumulated_root_overscroll());
3014 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(10, -60)); 3011 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(10, -60));
3015 EXPECT_EQ(gfx::Vector2dF(0, -10), host_impl_->accumulated_root_overscroll()); 3012 EXPECT_EQ(gfx::Vector2dF(0, -10), host_impl_->accumulated_root_overscroll());
3016 3013
3017 // Overscroll accumulates within the scope of ScrollBegin/ScrollEnd as long 3014 // Overscroll accumulates within the scope of ScrollBegin/ScrollEnd as long
3018 // as no scroll occurs. 3015 // as no scroll occurs.
3019 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, -20)); 3016 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, -20));
3020 EXPECT_EQ(gfx::Vector2dF(0, -30), host_impl_->accumulated_root_overscroll()); 3017 EXPECT_EQ(gfx::Vector2dF(0, -30), host_impl_->accumulated_root_overscroll());
3021 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, -20)); 3018 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, -20));
3022 EXPECT_EQ(gfx::Vector2dF(0, -50), host_impl_->accumulated_root_overscroll()); 3019 EXPECT_EQ(gfx::Vector2dF(0, -50), host_impl_->accumulated_root_overscroll());
3023 // Overscroll resets on valid scroll. 3020 // Overscroll resets on valid scroll.
3024 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, 10)); 3021 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, 10));
3025 EXPECT_EQ(gfx::Vector2dF(0, 0), host_impl_->accumulated_root_overscroll()); 3022 EXPECT_EQ(gfx::Vector2dF(0, 0), host_impl_->accumulated_root_overscroll());
3026 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, -20)); 3023 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, -20));
3027 EXPECT_EQ(gfx::Vector2dF(0, -10), host_impl_->accumulated_root_overscroll()); 3024 EXPECT_EQ(gfx::Vector2dF(0, -10), host_impl_->accumulated_root_overscroll());
3028 host_impl_->ScrollEnd(); 3025 host_impl_->ScrollEnd();
3029
3030 EXPECT_EQ(InputHandler::ScrollStarted,
3031 host_impl_->ScrollBegin(gfx::Point(), InputHandler::Wheel));
3032 // Fling velocity is reflected immediately.
3033 host_impl_->NotifyCurrentFlingVelocity(gfx::Vector2dF(10, 0));
3034 EXPECT_EQ(gfx::Vector2dF(10, 0), host_impl_->current_fling_velocity());
3035 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, -20));
3036 EXPECT_EQ(gfx::Vector2dF(0, -20), host_impl_->accumulated_root_overscroll());
3037 EXPECT_EQ(gfx::Vector2dF(10, 0), host_impl_->current_fling_velocity());
3038 } 3026 }
3039 3027
3040 3028
3041 TEST_F(LayerTreeHostImplTest, OverscrollChildWithoutBubbling) { 3029 TEST_F(LayerTreeHostImplTest, OverscrollChildWithoutBubbling) {
3042 // Scroll child layers beyond their maximum scroll range and make sure root 3030 // Scroll child layers beyond their maximum scroll range and make sure root
3043 // overscroll does not accumulate. 3031 // overscroll does not accumulate.
3044 gfx::Size surface_size(10, 10); 3032 gfx::Size surface_size(10, 10);
3045 scoped_ptr<LayerImpl> root_clip = 3033 scoped_ptr<LayerImpl> root_clip =
3046 LayerImpl::Create(host_impl_->active_tree(), 4); 3034 LayerImpl::Create(host_impl_->active_tree(), 4);
3047 scoped_ptr<LayerImpl> root = 3035 scoped_ptr<LayerImpl> root =
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
3080 host_impl_->ScrollBegin(gfx::Point(5, 5), 3068 host_impl_->ScrollBegin(gfx::Point(5, 5),
3081 InputHandler::NonBubblingGesture)); 3069 InputHandler::NonBubblingGesture));
3082 EXPECT_EQ(host_impl_->CurrentlyScrollingLayer(), grand_child_layer); 3070 EXPECT_EQ(host_impl_->CurrentlyScrollingLayer(), grand_child_layer);
3083 EXPECT_EQ(gfx::Vector2dF(), host_impl_->accumulated_root_overscroll()); 3071 EXPECT_EQ(gfx::Vector2dF(), host_impl_->accumulated_root_overscroll());
3084 host_impl_->ScrollBy(gfx::Point(), scroll_delta); 3072 host_impl_->ScrollBy(gfx::Point(), scroll_delta);
3085 EXPECT_EQ(host_impl_->CurrentlyScrollingLayer(), child_layer); 3073 EXPECT_EQ(host_impl_->CurrentlyScrollingLayer(), child_layer);
3086 EXPECT_EQ(gfx::Vector2dF(), host_impl_->accumulated_root_overscroll()); 3074 EXPECT_EQ(gfx::Vector2dF(), host_impl_->accumulated_root_overscroll());
3087 host_impl_->ScrollEnd(); 3075 host_impl_->ScrollEnd();
3088 3076
3089 // After scrolling the parent, another scroll on the opposite direction 3077 // After scrolling the parent, another scroll on the opposite direction
3090 // should scroll the child, resetting the fling velocity. 3078 // should scroll the child.
3091 scroll_delta = gfx::Vector2d(0, 70); 3079 scroll_delta = gfx::Vector2d(0, 70);
3092 host_impl_->NotifyCurrentFlingVelocity(gfx::Vector2dF(10, 0));
3093 EXPECT_EQ(gfx::Vector2dF(10, 0), host_impl_->current_fling_velocity());
3094 EXPECT_EQ(InputHandler::ScrollStarted, 3080 EXPECT_EQ(InputHandler::ScrollStarted,
3095 host_impl_->ScrollBegin(gfx::Point(5, 5), 3081 host_impl_->ScrollBegin(gfx::Point(5, 5),
3096 InputHandler::NonBubblingGesture)); 3082 InputHandler::NonBubblingGesture));
3097 EXPECT_EQ(host_impl_->CurrentlyScrollingLayer(), grand_child_layer); 3083 EXPECT_EQ(host_impl_->CurrentlyScrollingLayer(), grand_child_layer);
3098 host_impl_->ScrollBy(gfx::Point(), scroll_delta); 3084 host_impl_->ScrollBy(gfx::Point(), scroll_delta);
3099 EXPECT_EQ(host_impl_->CurrentlyScrollingLayer(), grand_child_layer); 3085 EXPECT_EQ(host_impl_->CurrentlyScrollingLayer(), grand_child_layer);
3100 EXPECT_EQ(gfx::Vector2dF(), host_impl_->accumulated_root_overscroll()); 3086 EXPECT_EQ(gfx::Vector2dF(), host_impl_->accumulated_root_overscroll());
3101 EXPECT_EQ(gfx::Vector2dF(), host_impl_->current_fling_velocity());
3102 host_impl_->ScrollEnd(); 3087 host_impl_->ScrollEnd();
3103 } 3088 }
3104 } 3089 }
3105 3090
3106 TEST_F(LayerTreeHostImplTest, OverscrollChildEventBubbling) { 3091 TEST_F(LayerTreeHostImplTest, OverscrollChildEventBubbling) {
3107 // When we try to scroll a non-scrollable child layer, the scroll delta 3092 // When we try to scroll a non-scrollable child layer, the scroll delta
3108 // should be applied to one of its ancestors if possible. Overscroll should 3093 // should be applied to one of its ancestors if possible. Overscroll should
3109 // be reflected only when it has bubbled up to the root scrolling layer. 3094 // be reflected only when it has bubbled up to the root scrolling layer.
3110 gfx::Size surface_size(10, 10); 3095 gfx::Size surface_size(10, 10);
3111 gfx::Size content_size(20, 20); 3096 gfx::Size content_size(20, 20);
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
3145 LayerTreeSettings settings; 3130 LayerTreeSettings settings;
3146 CreateHostImpl(settings, CreateOutputSurface()); 3131 CreateHostImpl(settings, CreateOutputSurface());
3147 3132
3148 LayerImpl* scroll_layer = SetupScrollAndContentsLayers(gfx::Size(50, 50)); 3133 LayerImpl* scroll_layer = SetupScrollAndContentsLayers(gfx::Size(50, 50));
3149 LayerImpl* clip_layer = scroll_layer->parent()->parent(); 3134 LayerImpl* clip_layer = scroll_layer->parent()->parent();
3150 clip_layer->SetBounds(gfx::Size(50, 50)); 3135 clip_layer->SetBounds(gfx::Size(50, 50));
3151 host_impl_->SetViewportSize(gfx::Size(50, 50)); 3136 host_impl_->SetViewportSize(gfx::Size(50, 50));
3152 host_impl_->active_tree()->SetPageScaleFactorAndLimits(1.f, 0.5f, 4.f); 3137 host_impl_->active_tree()->SetPageScaleFactorAndLimits(1.f, 0.5f, 4.f);
3153 DrawFrame(); 3138 DrawFrame();
3154 EXPECT_EQ(gfx::Vector2dF(), host_impl_->accumulated_root_overscroll()); 3139 EXPECT_EQ(gfx::Vector2dF(), host_impl_->accumulated_root_overscroll());
3155 EXPECT_EQ(gfx::Vector2dF(), host_impl_->current_fling_velocity());
3156 3140
3157 // Even though the layer can't scroll the overscroll still happens. 3141 // Even though the layer can't scroll the overscroll still happens.
3158 EXPECT_EQ(InputHandler::ScrollStarted, 3142 EXPECT_EQ(InputHandler::ScrollStarted,
3159 host_impl_->ScrollBegin(gfx::Point(), InputHandler::Wheel)); 3143 host_impl_->ScrollBegin(gfx::Point(), InputHandler::Wheel));
3160 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, 10)); 3144 host_impl_->ScrollBy(gfx::Point(), gfx::Vector2d(0, 10));
3161 EXPECT_EQ(gfx::Vector2dF(0, 10), host_impl_->accumulated_root_overscroll()); 3145 EXPECT_EQ(gfx::Vector2dF(0, 10), host_impl_->accumulated_root_overscroll());
3162 EXPECT_EQ(gfx::Vector2dF(), host_impl_->current_fling_velocity());
3163 } 3146 }
3164 3147
3165 TEST_F(LayerTreeHostImplTest, UnnecessaryGlowEffectCallsWhileScrollingUp) { 3148 TEST_F(LayerTreeHostImplTest, UnnecessaryGlowEffectCallsWhileScrollingUp) {
3166 // Edge glow effect should be applicable only upon reaching Edges 3149 // Edge glow effect should be applicable only upon reaching Edges
3167 // of the content. unnecessary glow effect calls shouldn't be 3150 // of the content. unnecessary glow effect calls shouldn't be
3168 // called while scrolling up without reaching the edge of the content. 3151 // called while scrolling up without reaching the edge of the content.
3169 gfx::Size surface_size(100, 100); 3152 gfx::Size surface_size(100, 100);
3170 gfx::Size content_size(200, 200); 3153 gfx::Size content_size(200, 200);
3171 scoped_ptr<LayerImpl> root_clip = 3154 scoped_ptr<LayerImpl> root_clip =
3172 LayerImpl::Create(host_impl_->active_tree(), 3); 3155 LayerImpl::Create(host_impl_->active_tree(), 3);
(...skipping 3068 matching lines...) Expand 10 before | Expand all | Expand 10 after
6241 EXPECT_EQ(host_impl_->global_tile_state().hard_memory_limit_in_bytes, 6224 EXPECT_EQ(host_impl_->global_tile_state().hard_memory_limit_in_bytes,
6242 300u * 1024u * 1024u); 6225 300u * 1024u * 1024u);
6243 EXPECT_EQ(host_impl_->global_tile_state().soft_memory_limit_in_bytes, 6226 EXPECT_EQ(host_impl_->global_tile_state().soft_memory_limit_in_bytes,
6244 150u * 1024u * 1024u); 6227 150u * 1024u * 1024u);
6245 EXPECT_EQ(host_impl_->global_tile_state().unused_memory_limit_in_bytes, 6228 EXPECT_EQ(host_impl_->global_tile_state().unused_memory_limit_in_bytes,
6246 75u * 1024u * 1024u); 6229 75u * 1024u * 1024u);
6247 } 6230 }
6248 6231
6249 } // namespace 6232 } // namespace
6250 } // namespace cc 6233 } // namespace cc
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_impl.cc ('k') | cc/trees/layer_tree_host_unittest_scroll.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698