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

Issue 2798713002: Global Resource Coordinator: Basic service internals (Closed)

Created:
3 years, 8 months ago by oystein (OOO til 10th of July)
Modified:
3 years, 7 months ago
CC:
Aaron Boodman, abarth-chromium, chrome-grc-reviews_chromium.org, chromium-reviews, darin (slow to review), qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Reland: Global Resource Coordinator: Basic service internals This adds the basic internals of the GRC; CoordinationUnits which can form a DAG, receive events, and send back updated resource usage policies. A full prototype of GRC usage can be seen here: https://codereview.chromium.org/2710823003 Service architecture doc: https://docs.google.com/document/d/1qec4DNDM2pLLIFfCBtnNQTxlNXQzjml69yC8SGU9bzI/edit# GRC parent doc (internal only): https://docs.google.com/document/d/1dx4KDbDFvP-GWwwrSPg8Gxx4kboIoPi8kDKTSXoTbC4/edit#heading=h.td4yhfm12fe3 R=primiano@chromium.org,skyostil@chromium.org,fmeawad@chromium.org,rockot@chromium.org BUG=691886 Review-Url: https://codereview.chromium.org/2798713002 Cr-Original-Original-Commit-Position: refs/heads/master@{#468002} Committed: https://chromium.googlesource.com/chromium/src/+/de0f39d2a625433e60b5e22e1d2d3803f3d219e5 Review-Url: https://codereview.chromium.org/2798713002 Cr-Original-Commit-Position: refs/heads/master@{#469107} Committed: https://chromium.googlesource.com/chromium/src/+/8b47351be59f0d590d8d5fcffe1c07350ba110f2 Review-Url: https://codereview.chromium.org/2798713002 Cr-Commit-Position: refs/heads/master@{#469713} Committed: https://chromium.googlesource.com/chromium/src/+/ea57f11806604d841b31336cb4da7dda36c8b1b7

Patch Set 1 #

Total comments: 42

Patch Set 2 : Review fixes #

Total comments: 23

Patch Set 3 : WIP review fixes #

Patch Set 4 : WIP reviews #

Patch Set 5 : Review fixes #

Patch Set 6 : Removed leftover stuff #

Patch Set 7 : libc++ buildfix #

Patch Set 8 : MSVC buildfix #

Patch Set 9 : Buildfix #

Patch Set 10 : MSVC buildfix? #

Patch Set 11 : Buildfixes #

Patch Set 12 : Buildfix #

Patch Set 13 : Buildfix #

Patch Set 14 : argh #

Patch Set 15 : resource_coordinator_unittests target buildfix #

Patch Set 16 : Potential .apk buildfix #

Patch Set 17 : Another potential .apk fix #

Patch Set 18 : Wrap EventType directly in resource_coordinator namespace when using helper #

Total comments: 24

Patch Set 19 : Review fixes #

Total comments: 26

Patch Set 20 : Docs #

Patch Set 21 : Review fixes #

Patch Set 22 : Use MurmurHash64A instead of MurmurHash2 now that id is 64bit #

Total comments: 11

Patch Set 23 : Review fixes #

Patch Set 24 : Fixed test failure #

Total comments: 4

Patch Set 25 : Review fixes and resource_coordination_unittests compile fix #

Patch Set 26 : Rebase #

Patch Set 27 : Rebase #

Patch Set 28 : Generalized to work with component export macros from https://codereview.chromium.org/2819413002 #

Patch Set 29 : Generalized to work with component macros from https://codereview.chromium.org/2819413002 #

Patch Set 30 : Buildfix #

Patch Set 31 : Windows(dbg) crash fix #

Patch Set 32 : Rebase + buildfix #

Patch Set 33 : Fixed BUILD.gn data_deps #

Patch Set 34 : Fixed manifest issue on Android #

Patch Set 35 : Buildfix after rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1358 lines, -52 lines) Patch
M services/resource_coordinator/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 33 3 chunks +67 lines, -1 line 0 comments Download
A services/resource_coordinator/DEPS View 1 1 chunk +3 lines, -0 lines 0 comments Download
A services/resource_coordinator/coordination_unit/coordination_unit_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 1 chunk +72 lines, -0 lines 0 comments Download
A services/resource_coordinator/coordination_unit/coordination_unit_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 1 chunk +220 lines, -0 lines 0 comments Download
A services/resource_coordinator/coordination_unit/coordination_unit_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 1 chunk +196 lines, -0 lines 0 comments Download
A services/resource_coordinator/coordination_unit/coordination_unit_provider_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 29 30 31 32 33 34 1 chunk +47 lines, -0 lines 0 comments Download
A services/resource_coordinator/coordination_unit/coordination_unit_provider_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 29 30 31 32 33 34 1 chunk +54 lines, -0 lines 0 comments Download
A services/resource_coordinator/manifest.json View 1 chunk +15 lines, -0 lines 0 comments Download
M services/resource_coordinator/public/cpp/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 3 chunks +10 lines, -2 lines 0 comments Download
A services/resource_coordinator/public/cpp/OWNERS View 1 chunk +5 lines, -0 lines 0 comments Download
A services/resource_coordinator/public/cpp/coordination_unit.typemap View 1 2 3 4 1 chunk +19 lines, -0 lines 0 comments Download
A services/resource_coordinator/public/cpp/coordination_unit_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 1 chunk +44 lines, -0 lines 0 comments Download
A services/resource_coordinator/public/cpp/coordination_unit_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 1 chunk +31 lines, -0 lines 0 comments Download
A services/resource_coordinator/public/cpp/coordination_unit_struct_traits.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 +39 lines, -0 lines 0 comments Download
A services/resource_coordinator/public/cpp/coordination_unit_struct_traits.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +66 lines, -0 lines 0 comments Download
A services/resource_coordinator/public/cpp/coordination_unit_types.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +24 lines, -0 lines 0 comments Download
D services/resource_coordinator/public/cpp/memory/memory_export.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 +0 lines, -32 lines 0 comments Download
M services/resource_coordinator/public/cpp/memory/memory_instrumentation_struct_traits.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 31 32 7 chunks +8 lines, -8 lines 0 comments Download
M services/resource_coordinator/public/cpp/memory/process_local_dump_manager_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 2 chunks +3 lines, -3 lines 0 comments Download
A services/resource_coordinator/public/cpp/resource_coordinator_export.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 29 30 1 chunk +30 lines, -0 lines 0 comments Download
A services/resource_coordinator/public/cpp/resource_coordinator_interface.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +56 lines, -0 lines 0 comments Download
A services/resource_coordinator/public/cpp/resource_coordinator_interface.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +80 lines, -0 lines 0 comments Download
M services/resource_coordinator/public/cpp/typemaps.gni View 1 chunk +4 lines, -1 line 0 comments Download
M services/resource_coordinator/public/interfaces/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 2 chunks +7 lines, -5 lines 0 comments Download
A services/resource_coordinator/public/interfaces/coordination_unit.mojom 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 +45 lines, -0 lines 0 comments Download
A services/resource_coordinator/public/interfaces/coordination_unit_provider.mojom View 1 2 1 chunk +11 lines, -0 lines 0 comments Download
A services/resource_coordinator/public/interfaces/events.mojom View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +19 lines, -0 lines 0 comments Download
A services/resource_coordinator/public/interfaces/service_constants.mojom View 1 chunk +7 lines, -0 lines 0 comments Download
A services/resource_coordinator/resource_coordinator_service.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 31 1 chunk +47 lines, -0 lines 0 comments Download
A services/resource_coordinator/resource_coordinator_service.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 1 chunk +39 lines, -0 lines 0 comments Download
A services/resource_coordinator/resource_coordinator_service_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 1 chunk +66 lines, -0 lines 0 comments Download
A services/resource_coordinator/service_main.cc View 1 chunk +13 lines, -0 lines 0 comments Download
A services/resource_coordinator/unittest_manifest.json View 1 chunk +11 lines, -0 lines 0 comments Download

Messages

Total messages: 155 (109 generated)
oystein (OOO til 10th of July)
First pass; ptal! Missing some docs and probably some tests still, but should otherwise be ...
3 years, 8 months ago (2017-04-04 21:28:18 UTC) #1
oystein (OOO til 10th of July)
forgot +chrisha
3 years, 8 months ago (2017-04-05 17:36:55 UTC) #3
Primiano Tucci (use gerrit)
Had a first pass, glad to see this coming along! As a general comment, I ...
3 years, 8 months ago (2017-04-06 18:09:47 UTC) #4
oystein (OOO til 10th of July)
Thanks On 2017/04/06 at 18:09:47, primiano wrote: > Had a first pass, glad to see ...
3 years, 8 months ago (2017-04-10 20:02:59 UTC) #5
oystein (OOO til 10th of July)
Thanks On 2017/04/06 at 18:09:47, primiano wrote: > Had a first pass, glad to see ...
3 years, 8 months ago (2017-04-10 20:03:00 UTC) #6
Ken Rockot(use gerrit already)
Looks thoroughly awesome in general. Didn't get a chance to review the tests yet, but ...
3 years, 8 months ago (2017-04-10 23:58:00 UTC) #7
oystein (OOO til 10th of July)
https://codereview.chromium.org/2798713002/diff/20001/services/resource_coordinator/public/cpp/coordination_unit_struct_traits.h File services/resource_coordinator/public/cpp/coordination_unit_struct_traits.h (right): https://codereview.chromium.org/2798713002/diff/20001/services/resource_coordinator/public/cpp/coordination_unit_struct_traits.h#newcode13 services/resource_coordinator/public/cpp/coordination_unit_struct_traits.h:13: IPC_ENUM_TRAITS_MIN_MAX_VALUE( On 2017/04/10 at 23:58:00, Ken Rockot wrote: > ...
3 years, 8 months ago (2017-04-11 00:11:58 UTC) #8
Ken Rockot(use gerrit already)
On 2017/04/11 at 00:11:58, oysteine wrote: > https://codereview.chromium.org/2798713002/diff/20001/services/resource_coordinator/public/cpp/coordination_unit_struct_traits.h > File services/resource_coordinator/public/cpp/coordination_unit_struct_traits.h (right): > > https://codereview.chromium.org/2798713002/diff/20001/services/resource_coordinator/public/cpp/coordination_unit_struct_traits.h#newcode13 ...
3 years, 8 months ago (2017-04-11 17:46:09 UTC) #9
Ken Rockot(use gerrit already)
On 2017/04/11 at 17:46:09, Ken Rockot wrote: > On 2017/04/11 at 00:11:58, oysteine wrote: > ...
3 years, 8 months ago (2017-04-11 17:46:56 UTC) #10
Primiano Tucci (use gerrit)
Took another pass. Mostly minor comments below (% GetProcessId which I think returns always 1 ...
3 years, 8 months ago (2017-04-11 18:04:52 UTC) #11
oystein (OOO til 10th of July)
On 2017/04/11 at 18:04:52, primiano wrote: > Took another pass. Mostly minor comments below (% ...
3 years, 8 months ago (2017-04-12 17:18:02 UTC) #12
oystein (OOO til 10th of July)
On 2017/04/12 at 17:18:02, oystein wrote: > On 2017/04/11 at 18:04:52, primiano wrote: > > ...
3 years, 8 months ago (2017-04-12 17:25:23 UTC) #13
oystein (OOO til 10th of July)
On 2017/04/12 at 17:25:23, oystein wrote: > On 2017/04/12 at 17:18:02, oystein wrote: > > ...
3 years, 8 months ago (2017-04-12 17:25:55 UTC) #14
oystein (OOO til 10th of July)
On 2017/04/12 at 17:25:55, oystein wrote: > On 2017/04/12 at 17:25:23, oystein wrote: > > ...
3 years, 8 months ago (2017-04-12 17:27:16 UTC) #15
oystein (OOO til 10th of July)
Thanks guys! New version up; ptal! https://codereview.chromium.org/2798713002/diff/20001/services/resource_coordinator/coordination_unit/coordination_unit_impl.cc File services/resource_coordinator/coordination_unit/coordination_unit_impl.cc (right): https://codereview.chromium.org/2798713002/diff/20001/services/resource_coordinator/coordination_unit/coordination_unit_impl.cc#newcode8 services/resource_coordinator/coordination_unit/coordination_unit_impl.cc:8: #include "base/lazy_instance.h" On ...
3 years, 8 months ago (2017-04-12 19:15:31 UTC) #16
Primiano Tucci (use gerrit)
oysteine@ and I had a chat offline about the Async GetID stuff. Essentially any alternative ...
3 years, 8 months ago (2017-04-13 17:22:19 UTC) #49
oystein (OOO til 10th of July)
On 2017/04/13 at 17:22:19, primiano wrote: > oysteine@ and I had a chat offline about ...
3 years, 8 months ago (2017-04-14 22:07:02 UTC) #58
oystein (OOO til 10th of July)
Yay, .apk issue fixed, looks like the trybots are all green now. rockot: Ready for ...
3 years, 8 months ago (2017-04-17 22:50:09 UTC) #64
dcheng
If I understand correctly, child processes are responsible for generating the IDs. Is this a ...
3 years, 8 months ago (2017-04-18 05:40:47 UTC) #67
oystein (OOO til 10th of July)
Thanks dcheng! +nasko as dcheng@ is going OOO. On 2017/04/18 at 05:40:47, dcheng wrote: > ...
3 years, 8 months ago (2017-04-18 20:55:34 UTC) #69
oystein (OOO til 10th of July)
On 2017/04/18 at 20:55:34, oystein wrote: > Thanks dcheng! > > +nasko as dcheng@ is ...
3 years, 8 months ago (2017-04-18 21:00:38 UTC) #72
Ken Rockot(use gerrit already)
Mojo stuff LGTM - sorry about the long delay https://codereview.chromium.org/2798713002/diff/340001/services/resource_coordinator/public/cpp/resource_coordinator_interface.cc File services/resource_coordinator/public/cpp/resource_coordinator_interface.cc (right): https://codereview.chromium.org/2798713002/diff/340001/services/resource_coordinator/public/cpp/resource_coordinator_interface.cc#newcode15 services/resource_coordinator/public/cpp/resource_coordinator_interface.cc:15: ...
3 years, 8 months ago (2017-04-18 21:56:54 UTC) #73
nasko
There are a few more files I need to go through, but sending some preliminary ...
3 years, 8 months ago (2017-04-21 00:17:33 UTC) #76
dcheng
https://codereview.chromium.org/2798713002/diff/340001/services/resource_coordinator/coordination_unit/coordination_unit_impl.cc File services/resource_coordinator/coordination_unit/coordination_unit_impl.cc (right): https://codereview.chromium.org/2798713002/diff/340001/services/resource_coordinator/coordination_unit/coordination_unit_impl.cc#newcode23 services/resource_coordinator/coordination_unit/coordination_unit_impl.cc:23: CUIDMap& g_cu_map() { On 2017/04/21 00:17:32, nasko wrote: > ...
3 years, 8 months ago (2017-04-21 00:23:17 UTC) #77
oystein (OOO til 10th of July)
Thanks nasko@! On 2017/04/21 at 00:17:33, nasko wrote: > There are a few more files ...
3 years, 8 months ago (2017-04-21 17:57:55 UTC) #78
nasko
https://codereview.chromium.org/2798713002/diff/340001/services/resource_coordinator/public/cpp/coordination_unit_id.cc File services/resource_coordinator/public/cpp/coordination_unit_id.cc (right): https://codereview.chromium.org/2798713002/diff/340001/services/resource_coordinator/public/cpp/coordination_unit_id.cc#newcode9 services/resource_coordinator/public/cpp/coordination_unit_id.cc:9: #include "third_party/smhasher/src/MurmurHash2.h" On 2017/04/21 17:57:55, oystein wrote: > On ...
3 years, 8 months ago (2017-04-24 22:10:51 UTC) #87
Ken Rockot(use gerrit already)
https://codereview.chromium.org/2798713002/diff/340001/services/resource_coordinator/public/interfaces/coordination_unit_provider.mojom File services/resource_coordinator/public/interfaces/coordination_unit_provider.mojom (right): https://codereview.chromium.org/2798713002/diff/340001/services/resource_coordinator/public/interfaces/coordination_unit_provider.mojom#newcode10 services/resource_coordinator/public/interfaces/coordination_unit_provider.mojom:10: CreateCoordinationUnit(CoordinationUnit& request, CoordinationUnitID id); On 2017/04/24 at 22:10:50, nasko ...
3 years, 8 months ago (2017-04-24 22:17:56 UTC) #88
oystein (OOO til 10th of July)
https://codereview.chromium.org/2798713002/diff/400001/services/resource_coordinator/coordination_unit/coordination_unit_impl.cc File services/resource_coordinator/coordination_unit/coordination_unit_impl.cc (right): https://codereview.chromium.org/2798713002/diff/400001/services/resource_coordinator/coordination_unit/coordination_unit_impl.cc#newcode84 services/resource_coordinator/coordination_unit/coordination_unit_impl.cc:84: if (!current_policy_) On 2017/04/24 at 22:10:50, nasko wrote: > ...
3 years, 8 months ago (2017-04-25 17:19:17 UTC) #89
nasko
There are still some compile failures. Overall LGTM. https://codereview.chromium.org/2798713002/diff/400001/services/resource_coordinator/coordination_unit/coordination_unit_impl.cc File services/resource_coordinator/coordination_unit/coordination_unit_impl.cc (right): https://codereview.chromium.org/2798713002/diff/400001/services/resource_coordinator/coordination_unit/coordination_unit_impl.cc#newcode155 services/resource_coordinator/coordination_unit/coordination_unit_impl.cc:155: DCHECK_EQ(1u, ...
3 years, 8 months ago (2017-04-25 21:40:56 UTC) #98
oystein (OOO til 10th of July)
Thanks nasko! https://codereview.chromium.org/2798713002/diff/440001/services/resource_coordinator/coordination_unit/coordination_unit_impl.cc File services/resource_coordinator/coordination_unit/coordination_unit_impl.cc (right): https://codereview.chromium.org/2798713002/diff/440001/services/resource_coordinator/coordination_unit/coordination_unit_impl.cc#newcode96 services/resource_coordinator/coordination_unit/coordination_unit_impl.cc:96: mojom::CoordinationPolicyPtr policy = mojom::CoordinationPolicy::New(); On 2017/04/25 at ...
3 years, 8 months ago (2017-04-26 18:15:00 UTC) #100
oystein (OOO til 10th of July)
+jam for //services/resource_coordinator/DEPS on //third_party/smhasher
3 years, 8 months ago (2017-04-26 18:15:51 UTC) #103
jam
On 2017/04/26 18:15:51, oystein wrote: > +jam for //services/resource_coordinator/DEPS on //third_party/smhasher curious why you use ...
3 years, 7 months ago (2017-04-27 15:39:36 UTC) #110
Primiano Tucci (use gerrit)
On 2017/04/27 15:39:36, jam wrote: > On 2017/04/26 18:15:51, oystein wrote: > > +jam for ...
3 years, 7 months ago (2017-04-27 15:56:26 UTC) #111
oystein (OOO til 10th of July)
primiano/rockot: I had to update this a bit due to https://codereview.chromium.org/2819413002, I chose to generalize ...
3 years, 7 months ago (2017-04-27 17:50:40 UTC) #114
jam
On 2017/04/27 15:56:26, Primiano Tucci wrote: > On 2017/04/27 15:39:36, jam wrote: > > On ...
3 years, 7 months ago (2017-04-28 01:01:11 UTC) #123
Primiano Tucci (use gerrit)
On 2017/04/28 01:01:11, jam wrote: > On 2017/04/27 15:56:26, Primiano Tucci wrote: > > On ...
3 years, 7 months ago (2017-04-28 09:12:04 UTC) #124
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/2798713002/560001
3 years, 7 months ago (2017-04-28 13:53:37 UTC) #127
commit-bot: I haz the power
Committed patchset #30 (id:560001) as https://chromium.googlesource.com/chromium/src/+/de0f39d2a625433e60b5e22e1d2d3803f3d219e5
3 years, 7 months ago (2017-04-28 15:21:36 UTC) #130
sky
A revert of this CL (patchset #30 id:560001) has been created in https://codereview.chromium.org/2851813002/ by sky@chromium.org. ...
3 years, 7 months ago (2017-04-28 18:13:25 UTC) #131
Khushal
A revert of this CL (patchset #30 id:560001) has been created in https://codereview.chromium.org/2848053002/ by khushalsagar@chromium.org. ...
3 years, 7 months ago (2017-04-28 19:50:38 UTC) #132
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/2798713002/620001
3 years, 7 months ago (2017-05-03 20:24:43 UTC) #140
oystein (OOO til 10th of July)
On 2017/04/28 at 19:50:38, khushalsagar wrote: > A revert of this CL (patchset #30 id:560001) ...
3 years, 7 months ago (2017-05-03 20:25:05 UTC) #141
commit-bot: I haz the power
Committed patchset #33 (id:620001) as https://chromium.googlesource.com/chromium/src/+/8b47351be59f0d590d8d5fcffe1c07350ba110f2
3 years, 7 months ago (2017-05-03 20:31:24 UTC) #144
oystein (OOO til 10th of July)
A revert of this CL (patchset #33 id:620001) has been created in https://codereview.chromium.org/2856173003/ by oysteine@chromium.org. ...
3 years, 7 months ago (2017-05-03 22:31:45 UTC) #145
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/2798713002/660001
3 years, 7 months ago (2017-05-05 16:25:23 UTC) #152
commit-bot: I haz the power
3 years, 7 months ago (2017-05-05 17:53:09 UTC) #155
Message was sent while issue was closed.
Committed patchset #35 (id:660001) as
https://chromium.googlesource.com/chromium/src/+/ea57f11806604d841b31336cb4da...

Powered by Google App Engine
This is Rietveld 408576698