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

Issue 2944523002: Improving flat containers interface. (Closed)

Created:
3 years, 6 months ago by dyaroshev
Modified:
3 years, 5 months ago
Reviewers:
vmpstr, danakj, jdoerrie, Nico, brettw, sky
CC:
Alexander Yashkin, chromium-reviews, danakj+watch_chromium.org, vmpstr+watch_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Improving flat containers interface. This patch adds a few features to base::flat_set/base::flat_map. 1) C++14 overloads of search operations. Now count, find, equal_range, lower_bound, upper_bound accept any type comparable with key_type if the comparison is transparent. Comparison is considered to be transparent if it has `is_transparent` member typedef (http://en.cppreference.com/w/cpp/utility/functional/less_void) We removed non-templated versions, because they were mainly for backward compatibility in extremely rare cases. 2) Templated version of erase. This version was in the original proposal but later was removed as a result of a bug report, because it changed overload resolution for `erase(iterator)`. We provide an explicit `erase(iterator)` overload that addresses this issue. BUG=682254 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel Review-Url: https://codereview.chromium.org/2944523002 Cr-Commit-Position: refs/heads/master@{#488865} Committed: https://chromium.googlesource.com/chromium/src/+/99a394d8dfee489d2a45308681f2bbbbf28ee6f8

Patch Set 1 #

Patch Set 2 : Removing redundant tests. #

Total comments: 3

Patch Set 3 : Review, round 1. #

Total comments: 9

Patch Set 4 : Review, round 2. #

Total comments: 23

Patch Set 5 : Review, round 3. #

Total comments: 10

Patch Set 6 : Review, round 4. #

Total comments: 24

Patch Set 7 : Review, round 5. #

Total comments: 7

Patch Set 8 : Review, round 6. #

Patch Set 9 : Hopefuly, fix for git issue. #

Total comments: 9

Patch Set 10 : Review, round 7. #

Patch Set 11 : Compilation: stricter type checking. #

Patch Set 12 : Compilation 2. #

Patch Set 13 : Rebase. #

Patch Set 14 : Compilation 2. #

Patch Set 15 : Compilation 3. #

Total comments: 4

Patch Set 16 : Minimizing target_auto_attacher diff #

Total comments: 4

Patch Set 17 : Review, minimizing diff 2. #

Total comments: 2

Patch Set 18 : Review docs. #

Patch Set 19 : Rebase. #

Patch Set 20 : Rebase 2. #

Patch Set 21 : Other platforms compilation. #

Patch Set 22 : Other platforms compilation 2. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+388 lines, -319 lines) Patch
M ash/fast_ink/fast_ink_view.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +2 lines, -1 line 0 comments Download
M base/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +0 lines, -1 line 0 comments Download
M base/bind_internal.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +0 lines, -13 lines 0 comments Download
M base/containers/README.md View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +71 lines, -0 lines 0 comments Download
M base/containers/container_test_utils.h View 1 2 3 4 5 6 1 chunk +0 lines, -59 lines 0 comments Download
M base/containers/flat_map.h View 1 2 3 4 5 6 4 chunks +17 lines, -14 lines 0 comments Download
M base/containers/flat_map_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +28 lines, -1 line 0 comments Download
M base/containers/flat_set.h View 1 2 3 4 5 6 4 chunks +15 lines, -14 lines 0 comments Download
M base/containers/flat_set_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +29 lines, -1 line 0 comments Download
M base/containers/flat_tree.h View 1 2 3 4 5 6 7 8 9 10 11 12 9 chunks +98 lines, -29 lines 0 comments Download
M base/containers/flat_tree_unittest.cc View 1 2 3 4 5 6 12 chunks +57 lines, -164 lines 0 comments Download
M base/template_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +26 lines, -0 lines 0 comments Download
M base/template_util_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +12 lines, -0 lines 0 comments Download
A + base/test/move_only_int.h View 1 2 3 4 5 6 1 chunk +8 lines, -0 lines 0 comments Download
M cc/output/direct_renderer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -1 line 0 comments Download
M cc/output/direct_renderer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +3 lines, -2 lines 0 comments Download
M cc/tiles/checker_image_tracker_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +12 lines, -9 lines 0 comments Download
M components/exo/layer_tree_frame_sink_holder.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, -1 line 0 comments Download
M components/viz/service/display/surface_aggregator.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +1 line, -1 line 0 comments Download
M content/browser/devtools/protocol/target_auto_attacher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +5 lines, -7 lines 0 comments Download
M ui/events/blink/input_handler_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 162 (81 generated)
dyaroshev
Finally got to do this. A bit to much meta-magic but all well known easily-lookupable ...
3 years, 6 months ago (2017-06-15 21:15:48 UTC) #8
brettw
I'm super backed up so didn't really look. But at first glance I would prefer ...
3 years, 6 months ago (2017-06-15 22:52:02 UTC) #9
dyaroshev
On 2017/06/15 at 22:52:02, brettw wrote: > I'm super backed up so didn't really look. ...
3 years, 6 months ago (2017-06-15 23:23:49 UTC) #10
dyaroshev
On 2017/06/15 at 23:23:49, dyaroshev wrote: > I haven't done the measurements yet, probably will ...
3 years, 6 months ago (2017-06-16 19:58:52 UTC) #11
dyaroshev
On 2017/06/16 at 19:58:52, dyaroshev wrote: > On 2017/06/15 at 23:23:49, dyaroshev wrote: > > ...
3 years, 6 months ago (2017-06-16 20:01:10 UTC) #12
jdoerrie
Thanks for doing this! What follows are general comments regarding this change, as I haven't ...
3 years, 6 months ago (2017-06-18 05:57:53 UTC) #13
dyaroshev
On 2017/06/18 at 05:57:53, jdoerrie wrote: > Thanks for doing this! What follows are general ...
3 years, 6 months ago (2017-06-18 12:06:15 UTC) #14
dyaroshev
On 2017/06/18 at 05:57:53, jdoerrie wrote: > 3) However, I am not convinced by magically ...
3 years, 6 months ago (2017-06-18 14:43:29 UTC) #15
dyaroshev
On 2017/06/18 at 05:57:53, jdoerrie wrote: > 3) However, I am not convinced by magically ...
3 years, 6 months ago (2017-06-18 14:43:29 UTC) #16
jdoerrie
On 2017/06/18 14:43:29, dyaroshev wrote: > On 2017/06/18 at 05:57:53, jdoerrie wrote: > > 3) ...
3 years, 6 months ago (2017-06-19 20:12:57 UTC) #17
dyaroshev
On 2017/06/19 at 20:12:57, jdoerrie wrote: > Fair point, you are right, I did only ...
3 years, 6 months ago (2017-06-19 21:15:20 UTC) #18
brettw
I'm supportive of adding C++14 templatized lookup support to this class. This will indeed solve ...
3 years, 6 months ago (2017-06-20 18:13:35 UTC) #19
dyaroshev
On 2017/06/20 at 18:13:35, brettw wrote: > I'm supportive of adding C++14 templatized lookup support ...
3 years, 6 months ago (2017-06-20 23:24:09 UTC) #20
jdoerrie
LGTM % nits https://codereview.chromium.org/2944523002/diff/40001/base/containers/README.md File base/containers/README.md (right): https://codereview.chromium.org/2944523002/diff/40001/base/containers/README.md#newcode49 base/containers/README.md:49: where you make many objects so ...
3 years, 6 months ago (2017-06-20 23:51:09 UTC) #21
dyaroshev
Hey, what's going on with codereview?) Is it April Fools or smth?) https://codereview.chromium.org/2944523002/diff/40001/base/containers/flat_tree.h File base/containers/flat_tree.h ...
3 years, 6 months ago (2017-06-22 10:41:43 UTC) #22
brettw
Sorry, I was on a 59 release blocker and not really looking at anything else ...
3 years, 6 months ago (2017-06-23 21:03:25 UTC) #28
danakj
Hey, sorry to be slow. These newer c++ concepts are quite new to me. I'm ...
3 years, 6 months ago (2017-06-23 21:10:26 UTC) #29
brettw
The only thing I'm unsure about are how much of the additions to template_util we ...
3 years, 6 months ago (2017-06-23 21:19:45 UTC) #30
vmpstr
https://codereview.chromium.org/2944523002/diff/60001/base/containers/README.md File base/containers/README.md (right): https://codereview.chromium.org/2944523002/diff/60001/base/containers/README.md#newcode127 base/containers/README.md:127: flat\_set/flat\_map support C++14 interface and a notion of transparent ...
3 years, 6 months ago (2017-06-23 21:45:14 UTC) #32
dyaroshev
https://codereview.chromium.org/2944523002/diff/60001/base/containers/README.md File base/containers/README.md (right): https://codereview.chromium.org/2944523002/diff/60001/base/containers/README.md#newcode127 base/containers/README.md:127: flat\_set/flat\_map support C++14 interface and a notion of transparent ...
3 years, 5 months ago (2017-06-26 11:47:30 UTC) #33
vmpstr
This is looking really good, just nits below https://codereview.chromium.org/2944523002/diff/60001/base/containers/README.md File base/containers/README.md (right): https://codereview.chromium.org/2944523002/diff/60001/base/containers/README.md#newcode127 base/containers/README.md:127: flat\_set/flat\_map ...
3 years, 5 months ago (2017-06-26 15:35:54 UTC) #34
dyaroshev
https://codereview.chromium.org/2944523002/diff/80001/base/containers/flat_tree.h File base/containers/flat_tree.h (right): https://codereview.chromium.org/2944523002/diff/80001/base/containers/flat_tree.h#newcode477 base/containers/flat_tree.h:477: using PickConstReferenceTypeT = On 2017/06/26 at 15:35:53, vmpstr wrote: ...
3 years, 5 months ago (2017-06-26 16:19:29 UTC) #35
vmpstr
lgtm. I think you also need to update the patch description to reflect the recent ...
3 years, 5 months ago (2017-06-26 16:27:32 UTC) #36
vmpstr
What happens if you have something like flat_set<int> and then do a find(1.5f); on it? ...
3 years, 5 months ago (2017-06-26 19:05:54 UTC) #37
dyaroshev
On 2017/06/26 at 19:05:54, vmpstr wrote: > What happens if you have something like flat_set<int> ...
3 years, 5 months ago (2017-06-26 19:10:58 UTC) #38
danakj
On Mon, Jun 26, 2017 at 3:10 PM, <dyaroshev@yandex-team.ru> wrote: > On 2017/06/26 at 19:05:54, ...
3 years, 5 months ago (2017-06-26 19:13:26 UTC) #40
dyaroshev
On 2017/06/26 at 19:13:26, danakj wrote: > On Mon, Jun 26, 2017 at 3:10 PM, ...
3 years, 5 months ago (2017-06-26 19:16:54 UTC) #43
danakj
Thanks for reviewing vmpstr! I have a few base structure comments mostly. https://codereview.chromium.org/2944523002/diff/100001/base/containers/README.md File base/containers/README.md ...
3 years, 5 months ago (2017-06-26 19:33:13 UTC) #46
danakj
On Mon, Jun 26, 2017 at 3:16 PM, <dyaroshev@yandex-team.ru> wrote: > On 2017/06/26 at 19:13:26, ...
3 years, 5 months ago (2017-06-26 19:35:34 UTC) #47
vmpstr
On 2017/06/26 19:10:58, dyaroshev wrote: > On 2017/06/26 at 19:05:54, vmpstr wrote: > > What ...
3 years, 5 months ago (2017-06-26 20:07:07 UTC) #48
dyaroshev
I'm hitting some weird issue with - patch doesn't apply successfully at *.md file. It ...
3 years, 5 months ago (2017-06-26 22:40:43 UTC) #49
vmpstr
https://codereview.chromium.org/2944523002/diff/120001/base/containers/README.md File base/containers/README.md (right): https://codereview.chromium.org/2944523002/diff/120001/base/containers/README.md#newcode49 base/containers/README.md:49: where you make many objects so that the code/heap ...
3 years, 5 months ago (2017-06-26 23:06:34 UTC) #50
jdoerrie
https://codereview.chromium.org/2944523002/diff/120001/base/containers/README.md File base/containers/README.md (right): https://codereview.chromium.org/2944523002/diff/120001/base/containers/README.md#newcode49 base/containers/README.md:49: where you make many objects so that the code/heap ...
3 years, 5 months ago (2017-06-27 12:56:50 UTC) #55
vmpstr
https://codereview.chromium.org/2944523002/diff/100001/base/containers/flat_tree.h File base/containers/flat_tree.h (right): https://codereview.chromium.org/2944523002/diff/100001/base/containers/flat_tree.h#newcode913 base/containers/flat_tree.h:913: // Only compile when conversion is implicit. On 2017/06/26 ...
3 years, 5 months ago (2017-06-27 16:09:58 UTC) #56
dyaroshev
On 2017/06/27 at 16:09:58, vmpstr wrote: > https://codereview.chromium.org/2944523002/diff/100001/base/containers/flat_tree.h > File base/containers/flat_tree.h (right): > > https://codereview.chromium.org/2944523002/diff/100001/base/containers/flat_tree.h#newcode913 ...
3 years, 5 months ago (2017-06-27 21:19:19 UTC) #57
dyaroshev
https://codereview.chromium.org/2944523002/diff/120001/base/containers/README.md File base/containers/README.md (right): https://codereview.chromium.org/2944523002/diff/120001/base/containers/README.md#newcode184 base/containers/README.md:184: str_to_int["c"] = 3; On 2017/06/26 at 23:06:34, vmpstr wrote: ...
3 years, 5 months ago (2017-06-27 21:19:30 UTC) #58
danakj
On 2017/06/26 19:16:54, dyaroshev wrote: > On 2017/06/26 at 19:13:26, danakj wrote: > > On ...
3 years, 5 months ago (2017-06-27 23:48:25 UTC) #63
jdoerrie
https://codereview.chromium.org/2944523002/diff/160001/base/containers/README.md File base/containers/README.md (right): https://codereview.chromium.org/2944523002/diff/160001/base/containers/README.md#newcode49 base/containers/README.md:49: where you make many objects so that the code/heap ...
3 years, 5 months ago (2017-06-28 09:02:37 UTC) #68
dyaroshev
On danakj@: - Did this uncover anything? Haven't defeated other issues yet. On jdoerrie: - ...
3 years, 5 months ago (2017-06-28 09:13:59 UTC) #71
dyaroshev
On 2017/06/27 at 23:48:25, danakj wrote: > Did this uncover anything? Apparently using template arguments ...
3 years, 5 months ago (2017-06-28 20:58:52 UTC) #75
vmpstr
On 2017/06/28 20:58:52, dyaroshev wrote: > On 2017/06/27 at 23:48:25, danakj wrote: > > Did ...
3 years, 5 months ago (2017-06-28 21:38:42 UTC) #80
dyaroshev
On 2017/06/28 at 21:38:42, vmpstr wrote: > On 2017/06/28 20:58:52, dyaroshev wrote: > > On ...
3 years, 5 months ago (2017-06-28 23:26:16 UTC) #81
vmpstr
On 2017/06/28 23:26:16, dyaroshev wrote: > On 2017/06/28 at 21:38:42, vmpstr wrote: > > On ...
3 years, 5 months ago (2017-06-28 23:28:52 UTC) #82
vmpstr
On 2017/06/28 20:58:52, dyaroshev wrote: > On 2017/06/27 at 23:48:25, danakj wrote: > > Did ...
3 years, 5 months ago (2017-06-29 20:04:23 UTC) #83
vmpstr
On 2017/06/29 20:04:23, vmpstr wrote: > On 2017/06/28 20:58:52, dyaroshev wrote: > > On 2017/06/27 ...
3 years, 5 months ago (2017-06-29 20:05:04 UTC) #84
dyaroshev
On 2017/06/29 at 20:05:04, vmpstr wrote: > On 2017/06/29 20:04:23, vmpstr wrote: > > On ...
3 years, 5 months ago (2017-06-29 21:19:28 UTC) #85
jdoerrie
On 2017/06/29 21:19:28, dyaroshev wrote: > On 2017/06/29 at 20:05:04, vmpstr wrote: > > On ...
3 years, 5 months ago (2017-06-30 08:35:51 UTC) #86
dyaroshev
On 2017/06/30 at 08:35:51, jdoerrie wrote: > On 2017/06/29 21:19:28, dyaroshev wrote: > > On ...
3 years, 5 months ago (2017-06-30 09:20:41 UTC) #87
dyaroshev
I hope the final patch should pass builds. I dealt with compilation issues. The only ...
3 years, 5 months ago (2017-07-19 23:35:47 UTC) #104
dyaroshev
https://codereview.chromium.org/2944523002/diff/300001/content/browser/devtools/protocol/target_auto_attacher.cc File content/browser/devtools/protocol/target_auto_attacher.cc (right): https://codereview.chromium.org/2944523002/diff/300001/content/browser/devtools/protocol/target_auto_attacher.cc#newcode172 content/browser/devtools/protocol/target_auto_attacher.cc:172: for (const auto& h : removed_hosts) And I missed ...
3 years, 5 months ago (2017-07-19 23:38:41 UTC) #105
danakj
https://codereview.chromium.org/2944523002/diff/300001/content/browser/devtools/protocol/target_auto_attacher.cc File content/browser/devtools/protocol/target_auto_attacher.cc (right): https://codereview.chromium.org/2944523002/diff/300001/content/browser/devtools/protocol/target_auto_attacher.cc#newcode137 content/browser/devtools/protocol/target_auto_attacher.cc:137: auto_attached_hosts_.erase(make_scoped_refptr(host)); Not for this CL but looks like we ...
3 years, 5 months ago (2017-07-20 15:52:52 UTC) #106
dyaroshev
https://codereview.chromium.org/2944523002/diff/300001/content/browser/devtools/protocol/target_auto_attacher.cc File content/browser/devtools/protocol/target_auto_attacher.cc (right): https://codereview.chromium.org/2944523002/diff/300001/content/browser/devtools/protocol/target_auto_attacher.cc#newcode137 content/browser/devtools/protocol/target_auto_attacher.cc:137: auto_attached_hosts_.erase(make_scoped_refptr(host)); On 2017/07/20 at 15:52:52, danakj wrote: > Not ...
3 years, 5 months ago (2017-07-20 16:03:18 UTC) #107
dyaroshev
On 2017/07/20 at 15:52:52, danakj wrote: > https://codereview.chromium.org/2944523002/diff/300001/content/browser/devtools/protocol/target_auto_attacher.cc > File content/browser/devtools/protocol/target_auto_attacher.cc (right): > > https://codereview.chromium.org/2944523002/diff/300001/content/browser/devtools/protocol/target_auto_attacher.cc#newcode137 ...
3 years, 5 months ago (2017-07-20 16:03:29 UTC) #108
danakj
https://codereview.chromium.org/2944523002/diff/320001/cc/output/direct_renderer.cc File cc/output/direct_renderer.cc (right): https://codereview.chromium.org/2944523002/diff/320001/cc/output/direct_renderer.cc#newcode196 cc/output/direct_renderer.cc:196: [&](const std::pair<RenderPassId, can you put the lambda in an ...
3 years, 5 months ago (2017-07-20 16:12:20 UTC) #111
dyaroshev
https://codereview.chromium.org/2944523002/diff/320001/cc/output/direct_renderer.cc File cc/output/direct_renderer.cc (right): https://codereview.chromium.org/2944523002/diff/320001/cc/output/direct_renderer.cc#newcode196 cc/output/direct_renderer.cc:196: [&](const std::pair<RenderPassId, On 2017/07/20 at 16:12:20, danakj wrote: > ...
3 years, 5 months ago (2017-07-20 16:33:02 UTC) #112
danakj
LGTM. Thanks for making sure nothing breaks from this!
3 years, 5 months ago (2017-07-20 17:53:22 UTC) #113
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/2944523002/340001
3 years, 5 months ago (2017-07-20 17:54:05 UTC) #116
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/495404)
3 years, 5 months ago (2017-07-20 18:04:19 UTC) #118
dyaroshev
sky - please review, target_auto_attacher thakis - please review input_handler_proxy
3 years, 5 months ago (2017-07-20 18:11:01 UTC) #120
Nico
File file lgtm, but: https://codereview.chromium.org/2944523002/diff/340001/base/containers/README.md File base/containers/README.md (right): https://codereview.chromium.org/2944523002/diff/340001/base/containers/README.md#newcode128 base/containers/README.md:128: flat\_set/flat\_map support C++14 interface and ...
3 years, 5 months ago (2017-07-20 18:26:53 UTC) #121
Nico
*My file lgtm, but:
3 years, 5 months ago (2017-07-20 18:27:06 UTC) #122
danakj
https://codereview.chromium.org/2944523002/diff/340001/base/containers/README.md File base/containers/README.md (right): https://codereview.chromium.org/2944523002/diff/340001/base/containers/README.md#newcode128 base/containers/README.md:128: flat\_set/flat\_map support C++14 interface and a notion of transparent ...
3 years, 5 months ago (2017-07-20 18:51:16 UTC) #123
Nico
On Thu, Jul 20, 2017 at 2:51 PM, <danakj@chromium.org> wrote: > > https://codereview.chromium.org/2944523002/diff/340001/ > base/containers/README.md ...
3 years, 5 months ago (2017-07-20 19:01:18 UTC) #124
danakj
On Thu, Jul 20, 2017 at 3:01 PM, Nico Weber <thakis@chromium.org> wrote: > On Thu, ...
3 years, 5 months ago (2017-07-20 19:07:02 UTC) #125
Nico
On Thu, Jul 20, 2017 at 3:06 PM, <danakj@chromium.org> wrote: > On Thu, Jul 20, ...
3 years, 5 months ago (2017-07-20 19:10:25 UTC) #126
danakj
On Thu, Jul 20, 2017 at 3:10 PM, Nico Weber <thakis@chromium.org> wrote: > On Thu, ...
3 years, 5 months ago (2017-07-20 19:11:54 UTC) #127
sky
content/browser/devtools/protocol/target_auto_attacher.cc LGTM
3 years, 5 months ago (2017-07-20 20:24:44 UTC) #128
dyaroshev
@danakj, @thakis Did I understand your suggestion correctly?
3 years, 5 months ago (2017-07-21 23:16:22 UTC) #131
danakj
I think so, thanks, that LGTM
3 years, 5 months ago (2017-07-21 23:23:11 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/2944523002/380001
3 years, 5 months ago (2017-07-21 23:35:21 UTC) #137
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_headless_rel on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_headless_rel/builds/132265)
3 years, 5 months ago (2017-07-21 23:53:32 UTC) #139
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/2944523002/400001
3 years, 5 months ago (2017-07-21 23:57:52 UTC) #142
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/474614)
3 years, 5 months ago (2017-07-22 01:17:03 UTC) #144
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/2944523002/420001
3 years, 5 months ago (2017-07-22 01:41:50 UTC) #147
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/474631)
3 years, 5 months ago (2017-07-22 03:35:01 UTC) #149
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/2944523002/440001
3 years, 5 months ago (2017-07-22 10:06:20 UTC) #152
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/344977)
3 years, 5 months ago (2017-07-22 12:56:22 UTC) #154
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/2944523002/440001
3 years, 5 months ago (2017-07-22 15:44:50 UTC) #156
dyaroshev
``` Patch blocked on closed tree (tree status: Tree is currently not open: Tree is ...
3 years, 5 months ago (2017-07-22 17:05:31 UTC) #157
dyaroshev
``` Patch blocked on closed tree (tree status: Tree is currently not open: Tree is ...
3 years, 5 months ago (2017-07-22 17:05:32 UTC) #158
commit-bot: I haz the power
3 years, 5 months ago (2017-07-22 19:10:53 UTC) #162
Message was sent while issue was closed.
Committed patchset #22 (id:440001) as
https://chromium.googlesource.com/chromium/src/+/99a394d8dfee489d2a45308681f2...

Powered by Google App Engine
This is Rietveld 408576698