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

Issue 11550035: Implement pinch-zoom scaling for main-frame scrollbars and pinch-zoom overlay scrollbars. (Closed)

Created:
8 years ago by wjmaclean
Modified:
7 years, 9 months ago
CC:
chromium-reviews, cc-bugs_chromium.org, backer, anicolao, trchen
Visibility:
Public.

Description

Implement pinch-zoom scaling for main-frame scrollbars and pinch-zoom overlay scrollbars. BUG=165842 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=188500

Patch Set 1 : Added missing files. #

Total comments: 11

Patch Set 2 : Revised as per suggestions, impl-painting [Not For Review Yet] #

Patch Set 3 : Revised as per changes in impl-side painting. #

Patch Set 4 : Lightweight layerImpl, simplified lifetime management. #

Patch Set 5 : Refactor for cleaner state/scrollbar split. #

Total comments: 6

Patch Set 6 : Revised architecture - complete cl for comments on approach. #

Total comments: 2

Patch Set 7 : Revised to attach PZ scrollbars to impl tree, use custome geometry. #

Patch Set 8 : Fix impl-side painting issues. #

Total comments: 42

Patch Set 9 : Revision as per comments, animate scrollbars, fix slow-path PZ scrolling. #

Total comments: 8

Patch Set 10 : Revised per latest comments. #

Total comments: 32

Patch Set 11 : Address comments, move animation framework changes to other CL. #

Patch Set 12 : Fix style, add unit tests. #

Total comments: 2

Patch Set 13 : Incorporate device scale factor, default to 0 totalSize when no root scroll layer. #

Total comments: 32

Patch Set 14 : Nits, use device_viewport_size, explicit forcing of first paint. #

Total comments: 5

Patch Set 15 : Revisions, force PZ scrollbars to always draw. #

Total comments: 9

Patch Set 16 : Handle new root-layer case, add unit test, fix style. #

Patch Set 17 : Make OpacityIsAnimating() virtual. #

Total comments: 4

Patch Set 18 : Use IsOverlay() instead. #

Patch Set 19 : Fix assert failing with impl-side-painting (invalid scroll_layer_id). #

Patch Set 20 : Revise for Ian's changes. #

Total comments: 4

Patch Set 21 : Rebased for style changes. #

Total comments: 1

Patch Set 22 : Add OpacityCanAnimateOnImplThread(), rebase for Chromification. #

Patch Set 23 : Rebased for Chromification changes. #

Patch Set 24 : Remove uneccessary CC_EXPORTs for win builders. #

Patch Set 25 : Rebase to fix collision with solid colour scrollbars patch. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+985 lines, -3 lines) Patch
M cc/cc.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +6 lines, -0 lines 0 comments Download
M cc/layer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +5 lines, -0 lines 0 comments Download
M cc/layer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +4 lines, -0 lines 0 comments Download
M cc/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 4 chunks +6 lines, -0 lines 0 comments Download
M cc/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 6 chunks +85 lines, -0 lines 0 comments Download
M cc/layer_tree_host_common.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +4 lines, -1 line 0 comments Download
M cc/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 5 chunks +5 lines, -0 lines 0 comments Download
M cc/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 2 chunks +173 lines, -0 lines 0 comments Download
M cc/layer_tree_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 3 chunks +19 lines, -0 lines 0 comments Download
M cc/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 5 chunks +130 lines, -0 lines 0 comments Download
M cc/layer_tree_settings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -0 lines 0 comments Download
M cc/layer_tree_settings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 21 1 chunk +1 line, -0 lines 0 comments Download
A cc/pinch_zoom_scrollbar.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 1 chunk +52 lines, -0 lines 0 comments Download
A cc/pinch_zoom_scrollbar.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +117 lines, -0 lines 0 comments Download
A cc/pinch_zoom_scrollbar_geometry.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 1 chunk +50 lines, -0 lines 0 comments Download
A cc/pinch_zoom_scrollbar_geometry.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +126 lines, -0 lines 0 comments Download
A cc/pinch_zoom_scrollbar_painter.h View 1 2 3 4 5 6 7 8 1 chunk +41 lines, -0 lines 0 comments Download
A cc/pinch_zoom_scrollbar_painter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +76 lines, -0 lines 0 comments Download
M cc/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 1 chunk +2 lines, -0 lines 0 comments Download
M cc/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 2 chunks +9 lines, -0 lines 0 comments Download
M cc/scrollbar_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 1 chunk +1 line, -0 lines 0 comments Download
M cc/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 2 chunks +2 lines, -1 line 0 comments Download
M cc/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 2 chunks +65 lines, -0 lines 0 comments Download
M cc/tree_synchronizer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +5 lines, -1 line 0 comments Download

Messages

Total messages: 68 (0 generated)
wjmaclean
Hi - Here's a first draft of the pinch-zoom scrollbars CL. Nat, I understand you're ...
8 years ago (2012-12-13 02:17:50 UTC) #1
enne (OOO)
At a high level, this patch needs some design massage. Please encapsulate as much complexity ...
8 years ago (2012-12-13 17:43:37 UTC) #2
wjmaclean
https://codereview.chromium.org/11550035/diff/2002/cc/layer_tree_host_impl.cc File cc/layer_tree_host_impl.cc (right): https://codereview.chromium.org/11550035/diff/2002/cc/layer_tree_host_impl.cc#newcode394 cc/layer_tree_host_impl.cc:394: // TODO(wjmaclean): make sure this is revised to work ...
8 years ago (2012-12-13 18:26:50 UTC) #3
enne (OOO)
https://codereview.chromium.org/11550035/diff/2002/cc/pinch_zoom_scrollbars_manager.h File cc/pinch_zoom_scrollbars_manager.h (right): https://codereview.chromium.org/11550035/diff/2002/cc/pinch_zoom_scrollbars_manager.h#newcode99 cc/pinch_zoom_scrollbars_manager.h:99: class PZScrollbarGeometry : public ScrollbarGeometryFixedThumb { On 2012/12/13 18:26:50, ...
8 years ago (2012-12-13 18:57:42 UTC) #4
wjmaclean
On 2012/12/13 18:57:42, enne wrote: > https://codereview.chromium.org/11550035/diff/2002/cc/pinch_zoom_scrollbars_manager.h > File cc/pinch_zoom_scrollbars_manager.h (right): > > https://codereview.chromium.org/11550035/diff/2002/cc/pinch_zoom_scrollbars_manager.h#newcode99 > ...
8 years ago (2012-12-13 19:25:48 UTC) #5
wjmaclean
Just uploading work in progress (for safe keeping). I won't get back to this until ...
8 years ago (2012-12-21 21:27:26 UTC) #6
wjmaclean
I'm currently working on unit tests to go with this, but would like some initial ...
7 years, 11 months ago (2013-01-03 18:28:29 UTC) #7
jamesr
Why would you want to create+destroy new layers on the impl thread? Do you not ...
7 years, 11 months ago (2013-01-04 18:54:12 UTC) #8
wjmaclean
On 2013/01/04 18:54:12, jamesr wrote: > Why would you want to create+destroy new layers on ...
7 years, 11 months ago (2013-01-04 19:34:12 UTC) #9
wjmaclean
Here's a new version with simplified lifetime management: basically, we just keep pushing lightweight wrapper ...
7 years, 11 months ago (2013-01-11 21:31:43 UTC) #10
aelias_OOO_until_Jul13
CC doesn't have a concept of impl-side only layer. That really doesn't fit with CC's ...
7 years, 11 months ago (2013-01-15 20:12:36 UTC) #11
Ian Vollick
I wonder if it would be useful to add the concept of an impl-only layer? ...
7 years, 11 months ago (2013-01-15 20:33:48 UTC) #12
aelias_OOO_until_Jul13
It looks like this feature falls into the category of fancy impl-side behavior somewhat like ...
7 years, 11 months ago (2013-01-15 20:57:56 UTC) #13
wjmaclean
On 2013/01/15 20:57:56, aelias wrote: > It looks like this feature falls into the category ...
7 years, 11 months ago (2013-01-15 21:03:03 UTC) #14
jamesr
If you can use a main-thread layer, I'd say do it.
7 years, 11 months ago (2013-01-16 04:22:06 UTC) #15
wjmaclean
Here's a re-vamped pinch-zoom scrollbar framework (this CL will need to be broken up before ...
7 years, 10 months ago (2013-02-06 18:02:47 UTC) #16
aelias_OOO_until_Jul13
https://codereview.chromium.org/11550035/diff/33001/cc/layer_impl.cc File cc/layer_impl.cc (right): https://codereview.chromium.org/11550035/diff/33001/cc/layer_impl.cc#newcode923 cc/layer_impl.cc:923: // know the offset of the desktop compatibility viewport. ...
7 years, 10 months ago (2013-02-06 19:02:45 UTC) #17
wjmaclean
BTW, patch set #6 relies on https://bugs.webkit.org/show_bug.cgi?id=109064 to plumb through scrollbar defaults from WebKit.
7 years, 10 months ago (2013-02-06 19:40:12 UTC) #18
wjmaclean
James - this has been revised based on our recent discussion, PTAL?
7 years, 10 months ago (2013-02-26 15:19:59 UTC) #19
jamesr
https://codereview.chromium.org/11550035/diff/45001/cc/layer_tree_host.cc File cc/layer_tree_host.cc (right): https://codereview.chromium.org/11550035/diff/45001/cc/layer_tree_host.cc#newcode336 cc/layer_tree_host.cc:336: m_pinchZoomScrollbarHorizontal ? m_pinchZoomScrollbarHorizontal->id() : 0); we use -1 as ...
7 years, 10 months ago (2013-02-26 20:48:46 UTC) #20
wjmaclean
I've uploaded a new patch, PTAL. The current patch will need to be broken up ...
7 years, 9 months ago (2013-03-01 15:30:32 UTC) #21
jamesr
https://codereview.chromium.org/11550035/diff/51001/cc/layer_tree_host.cc File cc/layer_tree_host.cc (right): https://codereview.chromium.org/11550035/diff/51001/cc/layer_tree_host.cc#newcode373 cc/layer_tree_host.cc:373: new PinchZoomScrollbar(orientation, owner)).PassAs<WebKit::WebScrollbar>(), doing make_scoped_ptr(...).PassAs<T> is just extra typing. ...
7 years, 9 months ago (2013-03-02 03:19:13 UTC) #22
wjmaclean
I think I've addressed your comments, PTAL? https://codereview.chromium.org/11550035/diff/51001/cc/layer_tree_host.cc File cc/layer_tree_host.cc (right): https://codereview.chromium.org/11550035/diff/51001/cc/layer_tree_host.cc#newcode373 cc/layer_tree_host.cc:373: new PinchZoomScrollbar(orientation, ...
7 years, 9 months ago (2013-03-04 15:53:10 UTC) #23
jamesr
> https://codereview.chromium.org/11550035/diff/51001/cc/layer_tree_host.cc#newcode378 > cc/layer_tree_host.cc:378: scrollbarLayer->setOpacity(0.01); > //PinchZoomScrollbar::kDefaultOpacity); > On 2013/03/02 03:19:14, jamesr wrote: > > ...
7 years, 9 months ago (2013-03-04 18:30:56 UTC) #24
wjmaclean
On 2013/03/04 18:30:56, jamesr wrote: > > > https://codereview.chromium.org/11550035/diff/51001/cc/layer_tree_host.cc#newcode378 > > cc/layer_tree_host.cc:378: scrollbarLayer->setOpacity(0.01); > > ...
7 years, 9 months ago (2013-03-05 14:32:54 UTC) #25
wjmaclean
On 2013/03/05 14:32:54, wjmaclean wrote: > On 2013/03/04 18:30:56, jamesr wrote: > > > > ...
7 years, 9 months ago (2013-03-06 16:39:44 UTC) #26
enne (OOO)
https://codereview.chromium.org/11550035/diff/58001/cc/layer_tree_host.cc File cc/layer_tree_host.cc (right): https://codereview.chromium.org/11550035/diff/58001/cc/layer_tree_host.cc#newcode360 cc/layer_tree_host.cc:360: m_pinchZoomScrollbarHorizontal->setNeedsDisplay(); setBounds should take care of this if anything ...
7 years, 9 months ago (2013-03-06 19:32:58 UTC) #27
jamesr
On 2013/03/06 16:39:44, wjmaclean wrote: > > Are we good with this approach? I'd like ...
7 years, 9 months ago (2013-03-06 19:38:12 UTC) #28
wjmaclean
On 2013/03/06 19:38:12, jamesr wrote: > On 2013/03/06 16:39:44, wjmaclean wrote: > > > > ...
7 years, 9 months ago (2013-03-06 19:43:16 UTC) #29
wjmaclean
PTAL. I'll write tests tomorrow morning if this is OK. https://codereview.chromium.org/11550035/diff/58001/cc/layer_tree_host.cc File cc/layer_tree_host.cc (right): https://codereview.chromium.org/11550035/diff/58001/cc/layer_tree_host.cc#newcode360 ...
7 years, 9 months ago (2013-03-06 22:36:53 UTC) #30
enne (OOO)
https://codereview.chromium.org/11550035/diff/58001/cc/layer_tree_impl.cc File cc/layer_tree_impl.cc (right): https://codereview.chromium.org/11550035/diff/58001/cc/layer_tree_impl.cc#newcode560 cc/layer_tree_impl.cc:560: MakePinchZoomFadeAnimation(0.01, PinchZoomScrollbar::kDefaultOpacity)); On 2013/03/06 22:36:53, wjmaclean wrote: > On ...
7 years, 9 months ago (2013-03-06 22:45:38 UTC) #31
wjmaclean
PTAL, I've added tests; please let me know if there are any remaining concerns. https://codereview.chromium.org/11550035/diff/58001/cc/layer_tree_impl.cc ...
7 years, 9 months ago (2013-03-07 22:57:39 UTC) #32
enne (OOO)
https://codereview.chromium.org/11550035/diff/58001/cc/layer_tree_impl.h File cc/layer_tree_impl.h (right): https://codereview.chromium.org/11550035/diff/58001/cc/layer_tree_impl.h#newcode199 cc/layer_tree_impl.h:199: enum PinchZoomScrollbarUpdateReason { On 2013/03/07 22:57:39, wjmaclean wrote: > ...
7 years, 9 months ago (2013-03-07 23:41:17 UTC) #33
enne (OOO)
Ok, after some conversation with danakj, I see why you want to use contentBounds for ...
7 years, 9 months ago (2013-03-08 00:00:50 UTC) #34
wjmaclean
PTAL I've modified to account for device scale factor, and I think this may help ...
7 years, 9 months ago (2013-03-08 15:28:56 UTC) #35
danakj
On Fri, Mar 8, 2013 at 7:28 AM, <wjmaclean@chromium.org> wrote: > PTAL > I've modified ...
7 years, 9 months ago (2013-03-08 17:42:06 UTC) #36
wjmaclean
On 2013/03/08 17:42:06, danakj wrote: > On Fri, Mar 8, 2013 at 7:28 AM, <mailto:wjmaclean@chromium.org> ...
7 years, 9 months ago (2013-03-08 19:06:28 UTC) #37
danakj
On 2013/03/08 19:06:28, wjmaclean wrote: > On 2013/03/08 17:42:06, danakj wrote: > > On Fri, ...
7 years, 9 months ago (2013-03-08 19:37:48 UTC) #38
wjmaclean
On 2013/03/08 19:37:48, danakj wrote: > On 2013/03/08 19:06:28, wjmaclean wrote: > > On 2013/03/08 ...
7 years, 9 months ago (2013-03-08 19:57:31 UTC) #39
enne (OOO)
A bunch of style comments, but I'm still a bit confused about spaces. I'm happy ...
7 years, 9 months ago (2013-03-11 21:08:24 UTC) #40
wjmaclean
I think I've addressed all the concerns in the last round of comments, PTAL? https://codereview.chromium.org/11550035/diff/76002/cc/layer.h ...
7 years, 9 months ago (2013-03-12 16:13:07 UTC) #41
enne (OOO)
https://codereview.chromium.org/11550035/diff/88002/cc/layer.h File cc/layer.h (right): https://codereview.chromium.org/11550035/diff/88002/cc/layer.h#newcode56 cc/layer.h:56: NOTUSED_ID = 0 Can you add a PINCH_ZOOM_ROOT_SCROLL_LAYER_ID = ...
7 years, 9 months ago (2013-03-12 16:27:37 UTC) #42
wjmaclean
PTAL - I think I have a (sane) way to force the PZ scrollbars to ...
7 years, 9 months ago (2013-03-12 18:25:33 UTC) #43
danakj
Some style nit gifts and a suggestion. Instead of adding another method to cc::Layer, can ...
7 years, 9 months ago (2013-03-12 19:00:38 UTC) #44
enne (OOO)
https://codereview.chromium.org/11550035/diff/100001/cc/layer_tree_host.cc File cc/layer_tree_host.cc (right): https://codereview.chromium.org/11550035/diff/100001/cc/layer_tree_host.cc#newcode396 cc/layer_tree_host.cc:396: m_rootLayer->AddChild(m_pinchZoomScrollbarHorizontal); SetRootLayer will break this hookup. You need to ...
7 years, 9 months ago (2013-03-12 19:02:29 UTC) #45
wjmaclean
Working on a new revision ... Dana, I think I prefer the DoNotSkip ... method, ...
7 years, 9 months ago (2013-03-12 19:07:14 UTC) #46
wjmaclean
https://codereview.chromium.org/11550035/diff/100001/cc/layer_tree_host.cc File cc/layer_tree_host.cc (right): https://codereview.chromium.org/11550035/diff/100001/cc/layer_tree_host.cc#newcode378 cc/layer_tree_host.cc:378: scrollbarLayer->SetIsDrawable(true); On 2013/03/12 19:07:15, wjmaclean wrote: > On 2013/03/12 ...
7 years, 9 months ago (2013-03-12 19:11:02 UTC) #47
enne (OOO)
On 2013/03/12 19:07:14, wjmaclean wrote: > Dana, I think I prefer the DoNotSkip ... method, ...
7 years, 9 months ago (2013-03-12 19:34:21 UTC) #48
wjmaclean
On 2013/03/12 19:34:21, enne wrote: > On 2013/03/12 19:07:14, wjmaclean wrote: > > > Dana, ...
7 years, 9 months ago (2013-03-12 19:35:28 UTC) #49
wjmaclean
PTAL I've had to detect if we're creating a pinch-zoom ScrollbarLayerImpl, since using OpacityIsAnimating() blocks ...
7 years, 9 months ago (2013-03-12 20:30:08 UTC) #50
enne (OOO)
https://codereview.chromium.org/11550035/diff/113001/cc/scrollbar_layer.cc File cc/scrollbar_layer.cc (right): https://codereview.chromium.org/11550035/diff/113001/cc/scrollbar_layer.cc#newcode30 cc/scrollbar_layer.cc:30: scroll_layer_impl->ToScrollbarLayer()->SetOpacity(0); Why are opacity updates blocked and this is ...
7 years, 9 months ago (2013-03-12 21:10:08 UTC) #51
wjmaclean
https://codereview.chromium.org/11550035/diff/113001/cc/scrollbar_layer.cc File cc/scrollbar_layer.cc (right): https://codereview.chromium.org/11550035/diff/113001/cc/scrollbar_layer.cc#newcode30 cc/scrollbar_layer.cc:30: scroll_layer_impl->ToScrollbarLayer()->SetOpacity(0); On 2013/03/12 21:10:08, enne wrote: > Why are ...
7 years, 9 months ago (2013-03-12 22:02:22 UTC) #52
aelias_OOO_until_Jul13
We also animate the opacity of our overlay scrollbars so it looks fine to me.
7 years, 9 months ago (2013-03-12 22:18:41 UTC) #53
wjmaclean
On 2013/03/12 22:18:41, aelias wrote: > We also animate the opacity of our overlay scrollbars ...
7 years, 9 months ago (2013-03-13 12:21:06 UTC) #54
danakj
Did you see Ian's change? I +'d you on it. You shouldn't need to set ...
7 years, 9 months ago (2013-03-13 14:43:36 UTC) #55
enne (OOO)
I see that you removed the code from CreateLayerImpl, but this feels like you're back ...
7 years, 9 months ago (2013-03-13 18:46:31 UTC) #56
wjmaclean
> I see that you removed the code from CreateLayerImpl, but > this feels like ...
7 years, 9 months ago (2013-03-13 20:09:47 UTC) #57
wjmaclean
https://codereview.chromium.org/11550035/diff/151001/cc/layer_tree_settings.cc File cc/layer_tree_settings.cc (right): https://codereview.chromium.org/11550035/diff/151001/cc/layer_tree_settings.cc#newcode50 cc/layer_tree_settings.cc:50: , usePinchZoomScrollbars(true) This will default to false for landing.
7 years, 9 months ago (2013-03-13 20:39:10 UTC) #58
enne (OOO)
After discussion with vollick, I don't think updating the animation system here is really the ...
7 years, 9 months ago (2013-03-13 21:46:40 UTC) #59
wjmaclean
PTAL On 2013/03/13 21:46:40, enne wrote: > After discussion with vollick, I don't think updating ...
7 years, 9 months ago (2013-03-14 14:28:23 UTC) #60
enne (OOO)
lgtm Thanks for your patience and all the rounds of review updates.
7 years, 9 months ago (2013-03-15 16:34:21 UTC) #61
wjmaclean
On 2013/03/15 16:34:21, enne wrote: > lgtm > > Thanks for your patience and all ...
7 years, 9 months ago (2013-03-15 16:46:20 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/11550035/159001
7 years, 9 months ago (2013-03-15 17:13:18 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/11550035/122002
7 years, 9 months ago (2013-03-15 17:47:29 UTC) #64
commit-bot: I haz the power
Retried try job too often on mac_rel for step(s) content_unittests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=mac_rel&number=109434
7 years, 9 months ago (2013-03-15 18:38:31 UTC) #65
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/11550035/122002
7 years, 9 months ago (2013-03-15 19:14:59 UTC) #66
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wjmaclean@chromium.org/11550035/186001
7 years, 9 months ago (2013-03-15 19:39:13 UTC) #67
commit-bot: I haz the power
7 years, 9 months ago (2013-03-15 23:11:45 UTC) #68
Message was sent while issue was closed.
Change committed as 188500

Powered by Google App Engine
This is Rietveld 408576698