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

Issue 2860293002: Change cc::ElementId to be a uint64_t (Closed)

Created:
3 years, 7 months ago by chrishtr
Modified:
3 years, 7 months ago
CC:
blink-layers+watch_chromium.org, blink-reviews, blink-reviews-api_chromium.org, blink-reviews-platform-graphics_chromium.org, Rik, cc-bugs_chromium.org, chromium-reviews, danakj+watch_chromium.org, dglazkov+blink, dshwang, drott+blinkwatch_chromium.org, krit, fmalita+watch_chromium.org, jbauman+watch_chromium.org, Justin Novosad, kalyank, kenneth.christiansen, kinuko+watch, pdr+graphicswatchlist_chromium.org, piman+watch_chromium.org, rwlbuis, Stephen Chennney, Ian Vollick
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Change cc::ElementId to be a uint64_t This will: * Make cc::ElementId a fully opaque id to cc (per original design) * Make it easy to use it as a cache key wherever desired * Make all hash lookups involving an element id faster in cc * Simplifies the code I don't think there is any downside, as a uint64_t has 62 bits for node id, which is a large enough number to never be hit in any real web page. TBR=danakj BUG=718564 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Review-Url: https://codereview.chromium.org/2860293002 Cr-Commit-Position: refs/heads/master@{#470915} Committed: https://chromium.googlesource.com/chromium/src/+/c3daf2708acac918554319be74a152821bb7feec

Patch Set 1 #

Patch Set 2 : none #

Patch Set 3 : none #

Patch Set 4 : none #

Patch Set 5 : none #

Patch Set 6 : none #

Patch Set 7 : none #

Patch Set 8 : none #

Total comments: 34

Patch Set 9 : none #

Patch Set 10 : none #

Patch Set 11 : none #

Patch Set 12 : none #

Patch Set 13 : none #

Patch Set 14 : none #

Total comments: 4

Patch Set 15 : none #

Patch Set 16 : none #

Patch Set 17 : none #

Patch Set 18 : none #

Patch Set 19 : none #

Total comments: 9

Patch Set 20 : none #

Patch Set 21 : none #

Patch Set 22 : none #

Patch Set 23 : none #

Patch Set 24 : none #

Patch Set 25 : none #

Patch Set 26 : none #

Total comments: 16

Patch Set 27 : none #

Total comments: 9

Patch Set 28 : none #

Total comments: 3

Patch Set 29 : none #

Patch Set 30 : none #

Patch Set 31 : none #

Patch Set 32 : none #

Patch Set 33 : Merge branch 'master' into secondaryid #

Unified diffs Side-by-side diffs Delta from patch set Stats (+140 lines, -86 lines) Patch
M cc/animation/animation_player_unittest.cc View 22 23 24 25 26 27 1 chunk +1 line, -1 line 0 comments Download
M cc/layers/layer_impl_unittest.cc View 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 +2 lines, -2 lines 0 comments Download
M cc/layers/layer_unittest.cc View 17 18 19 20 21 22 23 24 25 26 27 4 chunks +4 lines, -4 lines 0 comments Download
M cc/test/animation_timelines_test_common.cc View 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 1 chunk +1 line, -1 line 0 comments Download
M cc/trees/element_id.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 3 chunks +8 lines, -6 lines 0 comments Download
D cc/trees/element_id.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 29 30 31 2 chunks +8 lines, -11 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 29 30 31 32 1 chunk +1 line, -1 line 0 comments Download
M cc/trees/layer_tree_host_unittest_animation.cc View 17 18 19 20 21 22 23 24 25 26 27 1 chunk +1 line, -1 line 0 comments Download
M cc/trees/tree_synchronizer_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 29 30 31 32 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DOMNodeIds.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 1 chunk +7 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMNodeIds.cpp 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 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.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 3 chunks +5 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/page/scrolling/ScrollState.cpp 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 29 30 31 32 1 chunk +4 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/canvas/HTMLCanvasElementModuleTest.cpp 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 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/BUILD.gn 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 29 30 31 32 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/CompositorElementId.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 29 30 1 chunk +15 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/CompositorElementId.cpp 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 29 1 chunk +20 lines, -2 lines 0 comments Download
A third_party/WebKit/Source/platform/graphics/CompositorElementIdTest.cpp 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 29 1 chunk +32 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsLayerTest.cpp View 22 23 24 25 26 27 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp View 22 23 24 25 26 27 5 chunks +5 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp 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 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/PropertyTreeStateTest.cpp View 22 23 24 25 26 27 4 chunks +5 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.cpp 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 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/web/tests/VisualViewportTest.cpp 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 29 1 chunk +3 lines, -2 lines 0 comments Download
M ui/compositor/layer.cc View 17 18 19 20 21 22 23 24 25 26 27 2 chunks +2 lines, -2 lines 0 comments Download
M ui/compositor/layer_animator.cc View 22 23 24 25 26 27 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 160 (103 generated)
chrishtr
https://codereview.chromium.org/2860293002/diff/140001/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h File third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h (right): https://codereview.chromium.org/2860293002/diff/140001/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h#newcode170 third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h:170: kNoPlaceholderCanvas = 0, // DOMNodeIds starts from 1, using ...
3 years, 7 months ago (2017-05-05 03:40:11 UTC) #8
pdr.
https://codereview.chromium.org/2860293002/diff/140001/third_party/WebKit/Source/platform/graphics/CompositorElementId.h File third_party/WebKit/Source/platform/graphics/CompositorElementId.h (right): https://codereview.chromium.org/2860293002/diff/140001/third_party/WebKit/Source/platform/graphics/CompositorElementId.h#newcode18 third_party/WebKit/Source/platform/graphics/CompositorElementId.h:18: enum class CompositorSubElementId { Do you know what this ...
3 years, 7 months ago (2017-05-05 03:46:10 UTC) #11
chrishtr
On 2017/05/05 at 03:46:10, pdr wrote: > https://codereview.chromium.org/2860293002/diff/140001/third_party/WebKit/Source/platform/graphics/CompositorElementId.h > File third_party/WebKit/Source/platform/graphics/CompositorElementId.h (right): > > https://codereview.chromium.org/2860293002/diff/140001/third_party/WebKit/Source/platform/graphics/CompositorElementId.h#newcode18 ...
3 years, 7 months ago (2017-05-05 03:47:27 UTC) #12
chrishtr
3 years, 7 months ago (2017-05-05 04:17:38 UTC) #16
suzyh_UTC10 (ex-contributor)
A whole host of mostly minor comments, coming from an external perspective not very familiar ...
3 years, 7 months ago (2017-05-05 04:27:31 UTC) #19
dcheng
Out of curiosity, any particular reason for unsigned long long rather than uint64_t?
3 years, 7 months ago (2017-05-05 05:02:29 UTC) #21
chrishtr
On 2017/05/05 at 05:02:29, dcheng wrote: > Out of curiosity, any particular reason for unsigned ...
3 years, 7 months ago (2017-05-05 05:25:51 UTC) #22
chrishtr
https://codereview.chromium.org/2860293002/diff/140001/cc/input/scrollbar_animation_controller_unittest.cc File cc/input/scrollbar_animation_controller_unittest.cc (right): https://codereview.chromium.org/2860293002/diff/140001/cc/input/scrollbar_animation_controller_unittest.cc#newcode83 cc/input/scrollbar_animation_controller_unittest.cc:83: scroll_layer->SetElementId(ElementId(scroll_layer->id())); On 2017/05/05 at 04:27:30, suzyh_UTC10 wrote: > You ...
3 years, 7 months ago (2017-05-05 05:34:52 UTC) #23
ajuma
https://codereview.chromium.org/2860293002/diff/140001/third_party/WebKit/Source/platform/graphics/CompositorElementId.h File third_party/WebKit/Source/platform/graphics/CompositorElementId.h (right): https://codereview.chromium.org/2860293002/diff/140001/third_party/WebKit/Source/platform/graphics/CompositorElementId.h#newcode18 third_party/WebKit/Source/platform/graphics/CompositorElementId.h:18: enum class CompositorSubElementId { On 2017/05/05 05:34:52, chrishtr wrote: ...
3 years, 7 months ago (2017-05-05 13:46:42 UTC) #32
chrishtr
https://codereview.chromium.org/2860293002/diff/260001/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h File third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h (right): https://codereview.chromium.org/2860293002/diff/260001/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h#newcode62 third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h:62: void SetPlaceholderCanvasId(unsigned canvas_id) { On 2017/05/05 at 13:46:42, ajuma ...
3 years, 7 months ago (2017-05-05 15:37:47 UTC) #33
chrishtr
Looks good now? I fixed two more problems caused by an uninitialized variable.
3 years, 7 months ago (2017-05-05 19:09:58 UTC) #40
wkorman
lgtm https://codereview.chromium.org/2860293002/diff/360001/cc/trees/element_id.h File cc/trees/element_id.h (left): https://codereview.chromium.org/2860293002/diff/360001/cc/trees/element_id.h#oldcode27 cc/trees/element_id.h:27: // Element ids are chosen by cc's clients ...
3 years, 7 months ago (2017-05-05 20:06:10 UTC) #41
chrishtr
https://codereview.chromium.org/2860293002/diff/360001/cc/trees/element_id.h File cc/trees/element_id.h (left): https://codereview.chromium.org/2860293002/diff/360001/cc/trees/element_id.h#oldcode27 cc/trees/element_id.h:27: // Element ids are chosen by cc's clients and ...
3 years, 7 months ago (2017-05-05 20:46:09 UTC) #44
ajuma
lgtm
3 years, 7 months ago (2017-05-05 20:55:22 UTC) #47
chrishtr
+danakj@ to review ui/compositor/
3 years, 7 months ago (2017-05-05 20:56:01 UTC) #49
pdr.
Chris and I talked about this offline a bit. I'm scared about the loss of ...
3 years, 7 months ago (2017-05-05 22:32:21 UTC) #52
chrishtr
On 2017/05/05 at 22:32:21, pdr wrote: > Chris and I talked about this offline a ...
3 years, 7 months ago (2017-05-07 16:26:15 UTC) #75
pdr.
On 2017/05/07 at 16:26:15, chrishtr wrote: > On 2017/05/05 at 22:32:21, pdr wrote: > > ...
3 years, 7 months ago (2017-05-07 18:34:44 UTC) #78
suzyh_UTC10 (ex-contributor)
It's no longer clear to me that this substantially simplifies the code, but I defer ...
3 years, 7 months ago (2017-05-08 01:04:16 UTC) #79
chrishtr
https://codereview.chromium.org/2860293002/diff/500001/third_party/WebKit/Source/core/dom/DOMNodeIds.cpp File third_party/WebKit/Source/core/dom/DOMNodeIds.cpp (right): https://codereview.chromium.org/2860293002/diff/500001/third_party/WebKit/Source/core/dom/DOMNodeIds.cpp#newcode14 third_party/WebKit/Source/core/dom/DOMNodeIds.cpp:14: uint64_t DOMNodeIds::IdForNode(Node* node) { On 2017/05/08 at 01:04:15, suzyh_UTC10 ...
3 years, 7 months ago (2017-05-08 16:32:13 UTC) #80
chrishtr
On 2017/05/07 at 18:34:44, pdr wrote: > On 2017/05/07 at 16:26:15, chrishtr wrote: > > ...
3 years, 7 months ago (2017-05-08 16:33:39 UTC) #83
chrishtr
On 2017/05/08 at 16:33:39, chrishtr wrote: > On 2017/05/07 at 18:34:44, pdr wrote: > > ...
3 years, 7 months ago (2017-05-08 16:36:19 UTC) #84
wkorman
It does feel like we've lost a chunk of the "simpler code" bullet point in ...
3 years, 7 months ago (2017-05-08 18:23:25 UTC) #87
chrishtr
Now with moar typing. PTAL
3 years, 7 months ago (2017-05-08 21:56:51 UTC) #88
chrishtr
And as an extra bonus, added a test.
3 years, 7 months ago (2017-05-08 21:57:50 UTC) #89
pdr.
https://codereview.chromium.org/2860293002/diff/540001/third_party/WebKit/Source/platform/graphics/CompositorElementIdTest.cpp File third_party/WebKit/Source/platform/graphics/CompositorElementIdTest.cpp (right): https://codereview.chromium.org/2860293002/diff/540001/third_party/WebKit/Source/platform/graphics/CompositorElementIdTest.cpp#newcode1 third_party/WebKit/Source/platform/graphics/CompositorElementIdTest.cpp:1: // Copyright 2016 The Chromium Authors. All rights reserved. ...
3 years, 7 months ago (2017-05-08 22:01:49 UTC) #90
pdr.
LGTM
3 years, 7 months ago (2017-05-08 22:01:56 UTC) #91
wkorman
lgtm https://codereview.chromium.org/2860293002/diff/540001/cc/trees/element_id.h File cc/trees/element_id.h (right): https://codereview.chromium.org/2860293002/diff/540001/cc/trees/element_id.h#newcode67 cc/trees/element_id.h:67: ElementIdType id_; For the record: we discussed in ...
3 years, 7 months ago (2017-05-08 22:25:26 UTC) #92
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/540001
3 years, 7 months ago (2017-05-08 22:30:42 UTC) #96
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/600001
3 years, 7 months ago (2017-05-08 23:20:48 UTC) #104
commit-bot: I haz the power
Try jobs failed on following builders: win_clang on master.tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_clang/builds/223766)
3 years, 7 months ago (2017-05-09 00:36:10 UTC) #106
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/600001
3 years, 7 months ago (2017-05-09 01:19:43 UTC) #108
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/620001
3 years, 7 months ago (2017-05-09 01:44:01 UTC) #111
commit-bot: I haz the power
Try jobs failed on following builders: linux_layout_tests_slimming_paint_v2 on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_layout_tests_slimming_paint_v2/builds/4271)
3 years, 7 months ago (2017-05-09 03:05:29 UTC) #113
chrishtr
Fixed Blink hash function to differentiate between a deleted and empty state. Used 1 for ...
3 years, 7 months ago (2017-05-09 04:22:31 UTC) #115
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/640001
3 years, 7 months ago (2017-05-09 04:23:55 UTC) #117
commit-bot: I haz the power
Try jobs failed on following builders: linux_android_rel_ng on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/linux_android_rel_ng/builds/288850)
3 years, 7 months ago (2017-05-09 05:46:12 UTC) #119
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/640001
3 years, 7 months ago (2017-05-09 14:05:14 UTC) #121
danakj
ui/compositor rs LGTM
3 years, 7 months ago (2017-05-09 15:09:09 UTC) #122
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on master.tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/439480)
3 years, 7 months ago (2017-05-09 16:13:50 UTC) #124
chrishtr
Changed the trace macro key from "id" to "id_" to avoid a collision with a ...
3 years, 7 months ago (2017-05-09 19:58:13 UTC) #126
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/660001
3 years, 7 months ago (2017-05-09 19:59:11 UTC) #128
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/422132)
3 years, 7 months ago (2017-05-09 22:42:39 UTC) #130
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/660001
3 years, 7 months ago (2017-05-09 22:55:43 UTC) #132
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_TIMED_OUT, build has not started yet; ...
3 years, 7 months ago (2017-05-10 00:58:40 UTC) #134
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/660001
3 years, 7 months ago (2017-05-10 05:25:31 UTC) #136
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/449665)
3 years, 7 months ago (2017-05-10 08:25:33 UTC) #138
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/660001
3 years, 7 months ago (2017-05-10 16:31:32 UTC) #140
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/450278)
3 years, 7 months ago (2017-05-10 19:20:31 UTC) #142
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/660001
3 years, 7 months ago (2017-05-10 22:04:51 UTC) #144
commit-bot: I haz the power
Try jobs failed on following builders: linux_android_rel_ng on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/linux_android_rel_ng/builds/290752)
3 years, 7 months ago (2017-05-11 00:05:26 UTC) #146
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/660001
3 years, 7 months ago (2017-05-11 00:08:49 UTC) #148
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/451088)
3 years, 7 months ago (2017-05-11 03:39:55 UTC) #150
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/680001
3 years, 7 months ago (2017-05-11 04:24:50 UTC) #153
commit-bot: I haz the power
Try jobs failed on following builders: ios-simulator on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-simulator/builds/212441)
3 years, 7 months ago (2017-05-11 05:49:51 UTC) #155
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2860293002/680001
3 years, 7 months ago (2017-05-11 06:33:32 UTC) #157
commit-bot: I haz the power
3 years, 7 months ago (2017-05-11 11:08:23 UTC) #160
Message was sent while issue was closed.
Committed patchset #33 (id:680001) as
https://chromium.googlesource.com/chromium/src/+/c3daf2708acac918554319be74a1...

Powered by Google App Engine
This is Rietveld 408576698