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

Issue 23983047: Pinch/Zoom Infrastructure & Plumbing CL (Closed)

Created:
7 years, 3 months ago by wjmaclean
Modified:
6 years, 10 months ago
CC:
chromium-reviews, shawnsingh, tony, Rick Byers, bokan
Visibility:
Public.

Description

Pinch/Zoom Infrastructure & Plumbing CL This CL supplies the necessary changes to CC to support the inner/outer viewport model for pinch-zoom and fixed-position elements. The specification for these changes is contained in the document "Layer-based Solution for Pinch Zoom / Fixed Position". It incorporates a change to how scrollbar parameters are computed (removes the notion of max_scroll_offset as a quantity set be the embedder, and instead inferred from the relative sizes of a clip layer w.r.t. the scroll layer). Scrollbars are generalized so that a layer may have more than two scrollbars, and the parameters of the scrollbar are set w.r.t. the sizes and positions of a clip and a scroll layer. Further, changes to the scrip/scroll layer automatically notify any attached scrollbars. The CL also removes existing references to root_scroll_layer from LTH, LTI and LTHI and replaces them with either Inner/OuterViewportScrollLayer (dual-layer operation only exists at present if the --enable-pinch-virtual-viewport flag is specified, otherwise behavior is unchanged). Logic is added to (i) combine scroll offsets for the two viewports before passing it to the embedder, and (ii) splitting any offsets received from the embedder appropriately between the two viewports. This CL relies on https://codereview.chromium.org/138453004/ for changes in Blink to support it. BUG=148816 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=246812 R=aelias@chromium.org, enne@chromium.org, joi@chromium.org, piman@chromium.org, sky@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=247684 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=248092

Patch Set 1 #

Patch Set 2 : Improved functionality; overlay scrollbars work. #

Patch Set 3 : In progress - remove RootScrollLayer(). #

Patch Set 4 : Dead code removal. #

Patch Set 5 : Backup 2013.10.23 #

Patch Set 6 : Backup 2013.10.23 #

Patch Set 7 : Backup 2013.10.29 #

Total comments: 6

Patch Set 8 : Fixed unit tests, refactor LSOD/LTI interaction. #

Patch Set 9 : Draft for review. #

Total comments: 47

Patch Set 10 : Updated to fix Clank issues (top-controls, page scale application) #

Patch Set 11 : Address review comments. #

Total comments: 6

Patch Set 12 : Address comments, fix layout tests. #

Patch Set 13 : Adress comments, improve Clank maxscrolloffset & scrollbar positioning. #

Patch Set 14 : Downgrade DCHECK to if-statement, plus (small) rebase. #

Patch Set 15 : Add fix for empty scroll-layer bounds. #

Total comments: 67

Patch Set 16 : First round of aelias@'s suggestions (src@244887) #

Patch Set 17 : Revise AnimatePageScale() to be viewport specific (applies to src@245596) #

Patch Set 18 : Rebase to src@245918 #

Patch Set 19 : Remove content_bounds() usage, fix unit test. #

Total comments: 29

Patch Set 20 : Address review comments. #

Patch Set 21 : Fix Windows compile. #

Patch Set 22 : Fix Windows compile some more ... #

Patch Set 23 : Rebased to src@246635 #

Patch Set 24 : MaxScrollOffset must never be negative. #

Total comments: 1

Patch Set 25 : Fix test: PageScaleImplSidePaintingPerfTest.HeavyPage. #

Patch Set 26 : Use layer ids instead of pointers for registering scroll/clip layers. #

Total comments: 1

Patch Set 27 : Recursive tree walk unnecessary, removed. #

Patch Set 28 : Rebase, clear viewport layers when destroying LayerTreeHost. #

Patch Set 29 : Rebase to r248052. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1779 lines, -859 lines) Patch
M cc/animation/scrollbar_animation_controller_linear_fade.cc View 1 2 3 4 5 6 7 1 chunk +11 lines, -9 lines 0 comments Download
M cc/animation/scrollbar_animation_controller_linear_fade_unittest.cc View 1 2 3 4 5 6 7 8 9 10 3 chunks +26 lines, -11 lines 0 comments Download
M cc/animation/scrollbar_animation_controller_thinning.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +16 lines, -22 lines 0 comments Download
M cc/animation/scrollbar_animation_controller_thinning_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 2 chunks +22 lines, -10 lines 0 comments Download
M cc/layers/layer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 chunks +7 lines, -5 lines 0 comments Download
M cc/layers/layer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 5 chunks +45 lines, -12 lines 0 comments Download
M cc/layers/layer_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 7 chunks +17 lines, -19 lines 0 comments Download
M cc/layers/layer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 16 chunks +206 lines, -72 lines 0 comments Download
M cc/layers/layer_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 15 chunks +34 lines, -39 lines 0 comments Download
M cc/layers/layer_perftest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +2 lines, -1 line 0 comments Download
M cc/layers/layer_position_constraint_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 18 chunks +27 lines, -83 lines 0 comments Download
M cc/layers/layer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +3 lines, -1 line 0 comments Download
M cc/layers/painted_scrollbar_layer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 3 chunks +4 lines, -1 line 0 comments Download
M cc/layers/painted_scrollbar_layer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 4 chunks +24 lines, -6 lines 0 comments Download
M cc/layers/painted_scrollbar_layer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M cc/layers/scrollbar_layer_impl_base.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +19 lines, -5 lines 0 comments Download
M cc/layers/scrollbar_layer_impl_base.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 4 chunks +48 lines, -4 lines 0 comments Download
M cc/layers/scrollbar_layer_interface.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +6 lines, -1 line 0 comments Download
M cc/layers/scrollbar_layer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 12 chunks +95 lines, -61 lines 0 comments Download
M cc/layers/solid_color_scrollbar_layer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +6 lines, -1 line 0 comments Download
M cc/layers/solid_color_scrollbar_layer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 4 chunks +34 lines, -7 lines 0 comments Download
M cc/layers/solid_color_scrollbar_layer_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +4 lines, -2 lines 0 comments Download
M cc/layers/solid_color_scrollbar_layer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 2 chunks +23 lines, -10 lines 0 comments Download
M cc/test/layer_tree_json_parser.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +20 lines, -1 line 0 comments Download
M cc/trees/layer_tree_host.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 chunks +8 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 4 chunks +71 lines, -16 lines 0 comments Download
M cc/trees/layer_tree_host_common_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 6 chunks +19 lines, -10 lines 0 comments Download
M cc/trees/layer_tree_host_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 3 chunks +3 lines, -2 lines 0 comments Download
M cc/trees/layer_tree_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 21 chunks +93 lines, -47 lines 0 comments Download
M cc/trees/layer_tree_host_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 52 chunks +290 lines, -148 lines 0 comments Download
M cc/trees/layer_tree_host_perftest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +15 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +9 lines, -1 line 0 comments Download
M cc/trees/layer_tree_host_unittest_animation.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +1 line, -1 line 0 comments Download
M cc/trees/layer_tree_host_unittest_damage.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 4 chunks +15 lines, -6 lines 0 comments Download
M cc/trees/layer_tree_host_unittest_scroll.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 18 chunks +213 lines, -109 lines 0 comments Download
M cc/trees/layer_tree_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +16 lines, -6 lines 0 comments Download
M cc/trees/layer_tree_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 13 chunks +263 lines, -104 lines 0 comments Download
M cc/trees/tree_synchronizer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 4 chunks +10 lines, -14 lines 0 comments Download
M content/public/common/common_param_traits_macros.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/gpu/render_widget_compositor.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +1 line, -0 lines 0 comments Download
M content/test/web_layer_tree_view_impl_for_testing.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +5 lines, -0 lines 0 comments Download
M content/test/web_layer_tree_view_impl_for_testing.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +20 lines, -0 lines 0 comments Download
M ui/gfx/transform.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 2 chunks +8 lines, -0 lines 0 comments Download
M webkit/renderer/compositor_bindings/web_layer_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -2 lines 0 comments Download
M webkit/renderer/compositor_bindings/web_layer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +6 lines, -7 lines 0 comments Download
M webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.h View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
M webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 2 chunks +10 lines, -2 lines 0 comments Download

Messages

Total messages: 66 (0 generated)
enne (OOO)
This is looking pretty reasonable to me. It's about what I'd expect to see in ...
7 years, 1 month ago (2013-10-31 18:45:58 UTC) #1
wjmaclean
There are multiple owners required for this Cl: content/public : Jói content/test : sky content/renderer/gpu ...
7 years, 1 month ago (2013-11-13 21:01:28 UTC) #2
Jói
//content/public LGTM.
7 years, 1 month ago (2013-11-13 22:08:09 UTC) #3
sky
content/test LGTM
7 years, 1 month ago (2013-11-13 22:28:48 UTC) #4
aelias_OOO_until_Jul13
My main concern with this is around the interaction with URL-bar hiding. Have you tried ...
7 years, 1 month ago (2013-11-14 01:25:35 UTC) #5
piman
On 2013/11/13 21:01:28, wjmaclean wrote: > content/renderer/gpu : piman LGTM for that.
7 years, 1 month ago (2013-11-14 19:06:15 UTC) #6
enne (OOO)
I took a brief look through the non-test parts of this patch and this is ...
7 years, 1 month ago (2013-11-14 22:59:00 UTC) #7
wjmaclean
On 2013/11/14 01:25:35, aelias - OOO until Dec 9 wrote: > My main concern with ...
7 years, 1 month ago (2013-11-15 17:04:18 UTC) #8
aelias_OOO_until_Jul13
On 2013/11/15 17:04:18, wjmaclean wrote: > On 2013/11/14 01:25:35, aelias - OOO until Dec 9 ...
7 years, 1 month ago (2013-11-15 18:08:32 UTC) #9
enne (OOO)
https://codereview.chromium.org/23983047/diff/192001/cc/layers/layer_impl_unittest.cc File cc/layers/layer_impl_unittest.cc (right): https://codereview.chromium.org/23983047/diff/192001/cc/layers/layer_impl_unittest.cc#newcode338 cc/layers/layer_impl_unittest.cc:338: layer()->SetBounds(gfx::Size(max_scroll_offset.x(), max_scroll_offset.y())); This is a little confusing. The max ...
7 years, 1 month ago (2013-11-19 19:30:21 UTC) #10
wjmaclean
Hopefully this is a step closer :-) https://codereview.chromium.org/23983047/diff/192001/cc/layers/layer.cc File cc/layers/layer.cc (right): https://codereview.chromium.org/23983047/diff/192001/cc/layers/layer.cc#newcode643 cc/layers/layer.cc:643: gfx::Vector2d Layer::TotalViewportScrollOffset() ...
6 years, 12 months ago (2013-12-24 21:03:49 UTC) #11
tony
https://codereview.chromium.org/23983047/diff/192001/cc/trees/layer_tree_host_impl.cc File cc/trees/layer_tree_host_impl.cc (right): https://codereview.chromium.org/23983047/diff/192001/cc/trees/layer_tree_host_impl.cc#newcode2358 cc/trees/layer_tree_host_impl.cc:2358: // TODO(wjmaclean) Is it ok to choose distance from ...
6 years, 12 months ago (2013-12-26 21:06:49 UTC) #12
enne (OOO)
https://codereview.chromium.org/23983047/diff/192001/cc/trees/layer_tree_host.cc File cc/trees/layer_tree_host.cc (right): https://codereview.chromium.org/23983047/diff/192001/cc/trees/layer_tree_host.cc#newcode1126 cc/trees/layer_tree_host.cc:1126: // The DCHECK below is triggering during zoom-out. On ...
6 years, 11 months ago (2014-01-02 19:28:16 UTC) #13
wjmaclean
Addressed comments, fixed some layout tests. Current status: all unit tests (with the exception of ...
6 years, 11 months ago (2014-01-03 21:57:11 UTC) #14
aelias_OOO_until_Jul13
I'm interested in trying to apply this patch locally and seeing how it looks on ...
6 years, 11 months ago (2014-01-07 00:53:41 UTC) #15
wjmaclean
Sure ... I wouldn't try this *just* yet, as the scroll offsets seem to be ...
6 years, 11 months ago (2014-01-07 15:19:34 UTC) #16
wjmaclean
New version, this one is worth trying (works against Clank repo at ee28e4bfe205f456fdd065b7b3135d8c4f9a6cea, (SVN changes ...
6 years, 11 months ago (2014-01-09 20:57:24 UTC) #17
enne (OOO)
On 2014/01/09 20:57:24, wjmaclean wrote: > Also, fails (temporarily) LayerTreeHostImplTest.ScrollNonAxisAlignedRotatedLayer > since this version *purposefully* ...
6 years, 11 months ago (2014-01-09 21:03:50 UTC) #18
wjmaclean
On 2014/01/09 21:03:50, enne wrote: > On 2014/01/09 20:57:24, wjmaclean wrote: > > > Also, ...
6 years, 11 months ago (2014-01-09 22:09:00 UTC) #19
wjmaclean
On 2014/01/09 22:09:00, wjmaclean wrote: > On 2014/01/09 21:03:50, enne wrote: > > On 2014/01/09 ...
6 years, 11 months ago (2014-01-13 16:51:22 UTC) #20
enne (OOO)
Please don't downgrade the DCHECK. I think it's important to check that assumption since the ...
6 years, 11 months ago (2014-01-15 00:54:50 UTC) #21
wjmaclean
On 2014/01/15 00:54:50, enne wrote: > Please don't downgrade the DCHECK. I think it's important ...
6 years, 11 months ago (2014-01-15 14:01:08 UTC) #22
aelias_OOO_until_Jul13
OK, I gave this a more detailed look through. https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.cc File cc/layers/layer.cc (right): https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.cc#newcode685 cc/layers/layer.cc:685: ...
6 years, 11 months ago (2014-01-16 03:44:03 UTC) #23
wjmaclean
https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.cc File cc/layers/layer.cc (right): https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.cc#newcode685 cc/layers/layer.cc:685: scroll_offset = layer_tree_host()->DistributeScrollOffsetToViewports( On 2014/01/16 03:44:04, aelias wrote: > ...
6 years, 11 months ago (2014-01-16 15:07:31 UTC) #24
enne (OOO)
https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.cc File cc/layers/layer.cc (right): https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.cc#newcode685 cc/layers/layer.cc:685: scroll_offset = layer_tree_host()->DistributeScrollOffsetToViewports( On 2014/01/16 03:44:04, aelias wrote: > ...
6 years, 11 months ago (2014-01-16 19:35:52 UTC) #25
aelias_OOO_until_Jul13
https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.cc File cc/layers/layer.cc (right): https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.cc#newcode685 cc/layers/layer.cc:685: scroll_offset = layer_tree_host()->DistributeScrollOffsetToViewports( On 2014/01/16 15:07:32, wjmaclean wrote: > ...
6 years, 11 months ago (2014-01-16 19:49:25 UTC) #26
wjmaclean
https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.h File cc/layers/layer.h (right): https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.h#newcode275 cc/layers/layer.h:275: bool scrollable() const { return scroll_clip_layer_; } On 2014/01/16 ...
6 years, 11 months ago (2014-01-16 20:13:30 UTC) #27
aelias_OOO_until_Jul13
https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.h File cc/layers/layer.h (right): https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.h#newcode275 cc/layers/layer.h:275: bool scrollable() const { return scroll_clip_layer_; } On 2014/01/16 ...
6 years, 11 months ago (2014-01-16 20:21:37 UTC) #28
aelias_OOO_until_Jul13
OK, anyway, we need to address all the concerns before flipping the flag to ship ...
6 years, 11 months ago (2014-01-16 20:36:36 UTC) #29
wjmaclean
https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.h File cc/layers/layer.h (right): https://codereview.chromium.org/23983047/diff/1112001/cc/layers/layer.h#newcode275 cc/layers/layer.h:275: bool scrollable() const { return scroll_clip_layer_; } On 2014/01/16 ...
6 years, 11 months ago (2014-01-16 20:39:40 UTC) #30
enne (OOO)
Please add a bug number, format your description to 72 characters, and update the bit ...
6 years, 11 months ago (2014-01-21 19:00:05 UTC) #31
wjmaclean
PTAL? https://codereview.chromium.org/23983047/diff/1382001/cc/layers/layer.cc File cc/layers/layer.cc (right): https://codereview.chromium.org/23983047/diff/1382001/cc/layers/layer.cc#newcode692 cc/layers/layer.cc:692: On 2014/01/21 19:00:06, enne wrote: > nit: unnecessary ...
6 years, 11 months ago (2014-01-21 22:37:26 UTC) #32
enne (OOO)
lgtm
6 years, 11 months ago (2014-01-21 22:41:32 UTC) #33
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/23983047/1462001
6 years, 11 months ago (2014-01-21 22:54:05 UTC) #34
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=45723
6 years, 11 months ago (2014-01-21 23:14:03 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/23983047/1462001
6 years, 11 months ago (2014-01-21 23:19:38 UTC) #36
commit-bot: I haz the power
Failed to trigger a try job on android_dbg HTTP Error 400: Bad Request
6 years, 11 months ago (2014-01-22 00:39:16 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/23983047/1792001
6 years, 11 months ago (2014-01-22 00:39:38 UTC) #38
commit-bot: I haz the power
Retried try job too often on win_rel for step(s) base_unittests, browser_tests, interactive_ui_tests, net_unittests, unit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_rel&number=249429
6 years, 11 months ago (2014-01-22 01:28:42 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/23983047/1952001
6 years, 11 months ago (2014-01-22 18:00:24 UTC) #40
commit-bot: I haz the power
The commit queue went berserk retrying too often for a seemingly flaky test on builder ...
6 years, 11 months ago (2014-01-23 01:40:16 UTC) #41
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/23983047/2222001
6 years, 11 months ago (2014-01-23 19:10:25 UTC) #42
commit-bot: I haz the power
Failed to trigger a try job on android_dbg HTTP Error 400: Bad Request
6 years, 11 months ago (2014-01-24 00:56:17 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/23983047/2412002
6 years, 11 months ago (2014-01-24 00:56:37 UTC) #44
aelias_OOO_until_Jul13
https://codereview.chromium.org/23983047/diff/2412002/cc/layers/layer_impl.cc File cc/layers/layer_impl.cc (right): https://codereview.chromium.org/23983047/diff/2412002/cc/layers/layer_impl.cc#newcode1145 cc/layers/layer_impl.cc:1145: gfx::Size scaled_scroll_bounds(bounds()); Why are you using the scroll layer's ...
6 years, 11 months ago (2014-01-24 01:12:28 UTC) #45
wjmaclean
On 2014/01/24 01:12:28, aelias wrote: > https://codereview.chromium.org/23983047/diff/2412002/cc/layers/layer_impl.cc > File cc/layers/layer_impl.cc (right): > > https://codereview.chromium.org/23983047/diff/2412002/cc/layers/layer_impl.cc#newcode1145 > ...
6 years, 11 months ago (2014-01-24 01:23:16 UTC) #46
aelias_OOO_until_Jul13
OK great, lgtm.
6 years, 11 months ago (2014-01-24 02:09:53 UTC) #47
commit-bot: I haz the power
Change committed as 246812
6 years, 11 months ago (2014-01-24 07:43:53 UTC) #48
Mike West
A revert of this CL has been created in https://codereview.chromium.org/146713002/ by mkwst@chromium.org. The reason for ...
6 years, 11 months ago (2014-01-24 12:08:59 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/23983047/2902001
6 years, 10 months ago (2014-01-29 02:52:46 UTC) #50
wjmaclean
On 2014/01/29 02:52:46, I haz the power (commit-bot) wrote: > CQ is trying da patch. ...
6 years, 10 months ago (2014-01-29 03:14:11 UTC) #51
commit-bot: I haz the power
Retried try job too often on android_dbg for step(s) slave_steps http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=android_dbg&number=143970
6 years, 10 months ago (2014-01-29 04:29:42 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/23983047/2902001
6 years, 10 months ago (2014-01-29 12:36:09 UTC) #53
commit-bot: I haz the power
Retried try job too often on android_dbg for step(s) slave_steps http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=android_dbg&number=144082
6 years, 10 months ago (2014-01-29 13:32:37 UTC) #54
wjmaclean
Committed patchset #25 manually as r247684 (presubmit successful).
6 years, 10 months ago (2014-01-29 13:54:38 UTC) #55
Adam Rice
A revert of this CL has been created in https://codereview.chromium.org/135183016/ by ricea@chromium.org. The reason for ...
6 years, 10 months ago (2014-01-29 14:30:42 UTC) #56
enne (OOO)
https://codereview.chromium.org/23983047/diff/2932001/cc/layers/layer.cc File cc/layers/layer.cc (right): https://codereview.chromium.org/23983047/diff/2932001/cc/layers/layer.cc#newcode718 cc/layers/layer.cc:718: layer_tree_host()->LayerById(scroll_clip_layer_id_); Inside of MaxScrollOffset seems like an unfortunate place ...
6 years, 10 months ago (2014-01-29 21:25:28 UTC) #57
wjmaclean
You're right, the recursive walk *is* overkill ... removed.
6 years, 10 months ago (2014-01-29 21:46:13 UTC) #58
enne (OOO)
lgtm. Thanks for the cleanup.
6 years, 10 months ago (2014-01-29 21:55:56 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/23983047/2952001
6 years, 10 months ago (2014-01-29 22:04:49 UTC) #60
commit-bot: I haz the power
Retried try job too often on linux_rel for step(s) base_unittests, browser_tests, cacheinvalidation_unittests, cc_unittests, check_deps, check_deps2git, ...
6 years, 10 months ago (2014-01-30 00:08:41 UTC) #61
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/23983047/2992001
6 years, 10 months ago (2014-01-30 03:18:50 UTC) #62
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=47208
6 years, 10 months ago (2014-01-30 13:55:15 UTC) #63
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/23983047/3012001
6 years, 10 months ago (2014-01-30 23:13:55 UTC) #64
commit-bot: I haz the power
Change committed as 248092
6 years, 10 months ago (2014-01-31 00:49:52 UTC) #65
commit-bot: I haz the power
6 years, 10 months ago (2014-01-31 00:49:56 UTC) #66
Message was sent while issue was closed.
CQ bit was unchecked on CL. Ignoring.

Powered by Google App Engine
This is Rietveld 408576698