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

Issue 2141233002: cc: Clean up RecordingSource API (Closed)

Created:
4 years, 5 months ago by Menglin
Modified:
4 years, 4 months ago
Reviewers:
danakj, Khushal, vmpstr, wkorman
CC:
cc-bugs_chromium.org, chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

cc: Clean up RecordingSource API Currently, the data held in RecordingSource is either received from ContentLayerClient or PictureLayer. Separate them into two structs: ContentLayerClientData and PictureLayerClientData, and move them to PictureLayer. Also move most of the methods in RecordingSource to PictureLayer, except CreateRasterSource. UpdateAndExpandInvalidation is moved to PictureLayer. It will take pointers to the two structs, and update the members of the structs, instead of updating the internal state. So that when UpdateAndExpandInvalidation is called in PushPropertiesTo, PictureLayer's internal structs will be passed in. And when UpdateAndExpandInvalidation is called in GetPicture, local temporal structs will be passed in. BUG=625290 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Committed: https://crrev.com/51126b7275df6aa885015cf4693901003358049c Cr-Commit-Position: refs/heads/master@{#409348}

Patch Set 1 #

Total comments: 3

Patch Set 2 : inline the initialization, constructor/destructor = default in .cc #

Total comments: 5

Patch Set 3 : remove recoding_source_ from PictureLayer, and move all its internal state to PictureLayer #

Total comments: 29

Patch Set 4 : Address comments #

Total comments: 24

Patch Set 5 : keep RecordingSource, move three members to PictureLayer #

Total comments: 6

Patch Set 6 : RecordingSource keeps copies of content client layer related data #

Patch Set 7 : move types to the beginning of the access block #

Total comments: 6

Patch Set 8 : Test code refactor #

Total comments: 25

Patch Set 9 : address vmpstr's comments #

Total comments: 2

Patch Set 10 : nit addressed and sync to head #

Patch Set 11 : fix failed compositor_unittests #

Total comments: 2

Patch Set 12 : Remove ContentLayerClient* painter from UpdateAndExpandInvalidation and sync to head #

Unified diffs Side-by-side diffs Delta from patch set Stats (+240 lines, -234 lines) Patch
M cc/layers/picture_layer.h View 1 2 3 4 5 6 7 8 9 5 chunks +22 lines, -8 lines 0 comments Download
M cc/layers/picture_layer.cc View 1 2 3 4 5 6 7 8 9 10 11 6 chunks +71 lines, -15 lines 0 comments Download
M cc/layers/picture_layer_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +26 lines, -13 lines 0 comments Download
M cc/layers/picture_layer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +28 lines, -6 lines 0 comments Download
M cc/playback/discardable_image_map_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +12 lines, -28 lines 0 comments Download
M cc/playback/raster_source.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -2 lines 0 comments Download
M cc/playback/recording_source.h View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +6 lines, -12 lines 0 comments Download
M cc/playback/recording_source.cc View 1 2 3 4 5 6 7 8 9 10 11 9 chunks +17 lines, -67 lines 0 comments Download
M cc/playback/recording_source_unittest.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -20 lines 0 comments Download
M cc/proto/layer.proto View 1 2 3 4 5 6 7 8 9 10 2 chunks +4 lines, -0 lines 0 comments Download
D cc/proto/recording_source.proto View 1 2 3 4 2 chunks +8 lines, -12 lines 0 comments Download
M cc/test/fake_picture_layer.h View 1 2 3 4 5 6 7 8 9 2 chunks +16 lines, -0 lines 0 comments Download
M cc/test/fake_picture_layer.cc View 1 2 3 4 5 6 7 2 chunks +8 lines, -1 line 0 comments Download
M cc/test/fake_recording_source.h View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +8 lines, -10 lines 0 comments Download
M cc/test/fake_recording_source.cc View 1 2 3 4 5 6 7 3 chunks +3 lines, -21 lines 0 comments Download
M cc/trees/layer_tree_host.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -3 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 chunks +6 lines, -14 lines 0 comments Download
M cc/trees/layer_tree_host_unittest_serialization.cc View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 83 (14 generated)
Menglin
Hi Khushal, please review this CL. Thanks! Menglin
4 years, 5 months ago (2016-07-12 21:31:47 UTC) #3
Khushal
https://codereview.chromium.org/2141233002/diff/1/cc/playback/recording_source.h File cc/playback/recording_source.h (right): https://codereview.chromium.org/2141233002/diff/1/cc/playback/recording_source.h#newcode91 cc/playback/recording_source.h:91: Inputs(); You can inline the initialization and remove the ...
4 years, 5 months ago (2016-07-12 23:28:19 UTC) #4
Menglin
https://codereview.chromium.org/2141233002/diff/1/cc/playback/recording_source.h File cc/playback/recording_source.h (right): https://codereview.chromium.org/2141233002/diff/1/cc/playback/recording_source.h#newcode91 cc/playback/recording_source.h:91: Inputs(); On 2016/07/12 23:28:19, Khushal wrote: > You can ...
4 years, 5 months ago (2016-07-12 23:36:47 UTC) #5
danakj
https://codereview.chromium.org/2141233002/diff/1/cc/playback/recording_source.h File cc/playback/recording_source.h (right): https://codereview.chromium.org/2141233002/diff/1/cc/playback/recording_source.h#newcode91 cc/playback/recording_source.h:91: Inputs(); On 2016/07/12 23:36:47, Menglin wrote: > On 2016/07/12 ...
4 years, 5 months ago (2016-07-12 23:39:43 UTC) #6
Menglin
danakj@chromium.org: Please review changes. thanks!
4 years, 5 months ago (2016-07-13 00:16:48 UTC) #8
danakj
On 2016/07/13 00:16:48, Menglin wrote: > mailto:danakj@chromium.org: Please review changes. thanks! I can look when ...
4 years, 5 months ago (2016-07-13 00:32:16 UTC) #9
Khushal
On 2016/07/13 00:32:16, danakj wrote: > On 2016/07/13 00:16:48, Menglin wrote: > > mailto:danakj@chromium.org: Please ...
4 years, 5 months ago (2016-07-13 00:46:44 UTC) #10
danakj
https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc File cc/playback/recording_source.cc (right): https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc#newcode139 cc/playback/recording_source.cc:139: inputs_.recorded_viewport = new_recorded_viewport; I don't understand the reason behind ...
4 years, 5 months ago (2016-07-13 20:05:34 UTC) #11
Khushal
https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc File cc/playback/recording_source.cc (right): https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc#newcode139 cc/playback/recording_source.cc:139: inputs_.recorded_viewport = new_recorded_viewport; On 2016/07/13 20:05:34, danakj wrote: > ...
4 years, 5 months ago (2016-07-13 20:16:51 UTC) #12
danakj
https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc File cc/playback/recording_source.cc (right): https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc#newcode139 cc/playback/recording_source.cc:139: inputs_.recorded_viewport = new_recorded_viewport; On 2016/07/13 20:16:50, Khushal wrote: > ...
4 years, 5 months ago (2016-07-13 20:19:34 UTC) #13
Khushal
https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc File cc/playback/recording_source.cc (right): https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc#newcode139 cc/playback/recording_source.cc:139: inputs_.recorded_viewport = new_recorded_viewport; On 2016/07/13 20:19:33, danakj wrote: > ...
4 years, 5 months ago (2016-07-13 20:55:16 UTC) #14
danakj
https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc File cc/playback/recording_source.cc (right): https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc#newcode139 cc/playback/recording_source.cc:139: inputs_.recorded_viewport = new_recorded_viewport; On 2016/07/13 20:55:16, Khushal wrote: > ...
4 years, 5 months ago (2016-07-14 20:15:17 UTC) #15
danakj
4 years, 5 months ago (2016-07-14 20:15:27 UTC) #17
vmpstr
On 2016/07/14 20:15:17, danakj wrote: > https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc > File cc/playback/recording_source.cc (right): > > https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc#newcode139 > ...
4 years, 5 months ago (2016-07-14 20:21:45 UTC) #18
danakj
On Thu, Jul 14, 2016 at 1:21 PM, <vmpstr@chromium.org> wrote: > On 2016/07/14 20:15:17, danakj ...
4 years, 5 months ago (2016-07-14 21:22:00 UTC) #19
Menglin
On 2016/07/14 20:15:17, danakj wrote: > https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc > File cc/playback/recording_source.cc (right): > > https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc#newcode139 > ...
4 years, 5 months ago (2016-07-14 23:33:55 UTC) #20
Menglin
On 2016/07/14 23:33:55, Menglin wrote: > On 2016/07/14 20:15:17, danakj wrote: > > > https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc ...
4 years, 5 months ago (2016-07-14 23:34:14 UTC) #21
Khushal
On 2016/07/14 20:21:45, vmpstr wrote: > On 2016/07/14 20:15:17, danakj wrote: > > > https://codereview.chromium.org/2141233002/diff/20001/cc/playback/recording_source.cc ...
4 years, 5 months ago (2016-07-14 23:49:51 UTC) #22
vmpstr
On 2016/07/14 23:49:51, Khushal wrote: > On 2016/07/14 20:21:45, vmpstr wrote: > > On 2016/07/14 ...
4 years, 5 months ago (2016-07-15 00:26:44 UTC) #23
Menglin
Hi all, I update another patch. This patch only has the dev code change, no ...
4 years, 5 months ago (2016-07-19 22:48:47 UTC) #25
Menglin
Oh and you don't need to look at picture_layer_impl_unittest.cc, picture_layer_unittest.cc, discardable_image_map_unittest.cc, fake_recording_source.cc, and fake_recording_source.h, because ...
4 years, 5 months ago (2016-07-19 22:56:37 UTC) #26
vmpstr
I think this is a really good direction. RecordingSource can probably be eliminated as well, ...
4 years, 5 months ago (2016-07-19 23:43:22 UTC) #27
Menglin
Hi vmpstr@, I replied to three of your comments on your questions. For the rest, ...
4 years, 5 months ago (2016-07-20 00:18:14 UTC) #28
vmpstr
https://codereview.chromium.org/2141233002/diff/40001/cc/layers/picture_layer.cc File cc/layers/picture_layer.cc (right): https://codereview.chromium.org/2141233002/diff/40001/cc/layers/picture_layer.cc#newcode61 cc/layers/picture_layer.cc:61: std::unique_ptr<RecordingSource> recording_source( On 2016/07/20 00:18:13, Menglin wrote: > On ...
4 years, 5 months ago (2016-07-20 00:27:06 UTC) #29
Menglin
On 2016/07/20 00:27:06, vmpstr wrote: > https://codereview.chromium.org/2141233002/diff/40001/cc/layers/picture_layer.cc > File cc/layers/picture_layer.cc (right): > > https://codereview.chromium.org/2141233002/diff/40001/cc/layers/picture_layer.cc#newcode61 > ...
4 years, 5 months ago (2016-07-20 00:28:32 UTC) #30
Menglin
https://codereview.chromium.org/2141233002/diff/40001/cc/layers/picture_layer.cc File cc/layers/picture_layer.cc (right): https://codereview.chromium.org/2141233002/diff/40001/cc/layers/picture_layer.cc#newcode37 cc/layers/picture_layer.cc:37: pl_data_ = pl_data; On 2016/07/19 23:43:22, vmpstr wrote: > ...
4 years, 5 months ago (2016-07-20 00:28:42 UTC) #31
Menglin
Hello, Before I start to touch the test code, I want to upload this new ...
4 years, 5 months ago (2016-07-20 21:25:22 UTC) #32
vmpstr
https://codereview.chromium.org/2141233002/diff/60001/cc/layers/picture_layer.cc File cc/layers/picture_layer.cc (right): https://codereview.chromium.org/2141233002/diff/60001/cc/layers/picture_layer.cc#newcode85 cc/layers/picture_layer.cc:85: layer_data_ = PictureLayerData(); What's the difference between this and ...
4 years, 5 months ago (2016-07-20 22:18:10 UTC) #33
Menglin
Hi vmpstr@, thanks for your comments i replied to them. https://codereview.chromium.org/2141233002/diff/60001/cc/layers/picture_layer.cc File cc/layers/picture_layer.cc (right): https://codereview.chromium.org/2141233002/diff/60001/cc/layers/picture_layer.cc#newcode85 ...
4 years, 5 months ago (2016-07-20 22:39:31 UTC) #34
vmpstr
https://codereview.chromium.org/2141233002/diff/60001/cc/layers/picture_layer.cc File cc/layers/picture_layer.cc (right): https://codereview.chromium.org/2141233002/diff/60001/cc/layers/picture_layer.cc#newcode85 cc/layers/picture_layer.cc:85: layer_data_ = PictureLayerData(); On 2016/07/20 22:39:31, Menglin wrote: > ...
4 years, 5 months ago (2016-07-20 23:55:55 UTC) #35
Khushal
I'm wondering if its really advantageous to remove the recording source and stash all of ...
4 years, 5 months ago (2016-07-21 00:42:41 UTC) #36
vmpstr
On 2016/07/21 00:42:41, Khushal wrote: > I'm wondering if its really advantageous to remove the ...
4 years, 5 months ago (2016-07-21 18:22:21 UTC) #37
Menglin
On 2016/07/21 18:22:21, vmpstr wrote: > On 2016/07/21 00:42:41, Khushal wrote: > > I'm wondering ...
4 years, 5 months ago (2016-07-21 18:36:05 UTC) #38
vmpstr
On 2016/07/21 18:36:05, Menglin wrote: > On 2016/07/21 18:22:21, vmpstr wrote: > > On 2016/07/21 ...
4 years, 5 months ago (2016-07-21 18:53:08 UTC) #39
Menglin
I'm answering with the best of my understanding of this change since i just started ...
4 years, 5 months ago (2016-07-21 19:42:40 UTC) #40
vmpstr
On 2016/07/21 19:42:40, Menglin wrote: > I'm answering with the best of my understanding of ...
4 years, 5 months ago (2016-07-21 22:35:15 UTC) #41
Khushal
No, you're right. No need for the separate struct, I said that because I thought ...
4 years, 5 months ago (2016-07-22 17:01:04 UTC) #42
Khushal
Also, SetNeedsDisplayRect can also go away from RecordingSource into PictureLayer. So then recording source doesn't ...
4 years, 5 months ago (2016-07-22 17:11:35 UTC) #43
Menglin
On 2016/07/22 17:01:04, Khushal wrote: > No, you're right. No need for the separate struct, ...
4 years, 5 months ago (2016-07-22 18:02:50 UTC) #44
Menglin
Hi all, In patch 5, recorded_viewport, display_list and painter_reported_memory_usage are moved to PictureLayer. UpdateAndExpandInvalidation is ...
4 years, 4 months ago (2016-07-25 18:38:52 UTC) #45
vmpstr
Sorry to keep going in circles, but I think if we make a recording source ...
4 years, 4 months ago (2016-07-25 20:29:14 UTC) #46
Menglin
https://codereview.chromium.org/2141233002/diff/80001/cc/layers/picture_layer.cc File cc/layers/picture_layer.cc (right): https://codereview.chromium.org/2141233002/diff/80001/cc/layers/picture_layer.cc#newcode130 cc/layers/picture_layer.cc:130: old_recorded_viewport, inputs_.recorded_viewport, inputs_.display_list); On 2016/07/25 20:29:14, vmpstr wrote: > ...
4 years, 4 months ago (2016-07-25 20:41:08 UTC) #47
vmpstr
On 2016/07/25 20:41:08, Menglin wrote: > https://codereview.chromium.org/2141233002/diff/80001/cc/layers/picture_layer.cc > File cc/layers/picture_layer.cc (right): > > https://codereview.chromium.org/2141233002/diff/80001/cc/layers/picture_layer.cc#newcode130 > ...
4 years, 4 months ago (2016-07-25 20:48:31 UTC) #48
Menglin
On 2016/07/25 20:48:31, vmpstr wrote: > On 2016/07/25 20:41:08, Menglin wrote: > > > https://codereview.chromium.org/2141233002/diff/80001/cc/layers/picture_layer.cc ...
4 years, 4 months ago (2016-07-25 20:50:39 UTC) #49
Menglin
Hi vmpstr, ptal of patch 7 before I change more test code. Thanks! https://codereview.chromium.org/2141233002/diff/80001/cc/layers/picture_layer.cc File ...
4 years, 4 months ago (2016-07-25 21:58:52 UTC) #50
vmpstr
I just looked at picture_layer/recording_source and I think these changes look good! https://codereview.chromium.org/2141233002/diff/120001/cc/layers/picture_layer.cc File cc/layers/picture_layer.cc ...
4 years, 4 months ago (2016-07-25 22:03:26 UTC) #51
Menglin
Hi Vlad, Patch 8 is the whole refactor. The code pass all unittests. But I ...
4 years, 4 months ago (2016-07-26 17:49:42 UTC) #52
vmpstr
This is looking good overall, just some questions/comments https://codereview.chromium.org/2141233002/diff/140001/cc/layers/picture_layer.cc File cc/layers/picture_layer.cc (right): https://codereview.chromium.org/2141233002/diff/140001/cc/layers/picture_layer.cc#newcode64 cc/layers/picture_layer.cc:64: recording_source_->CreateRasterSource(can_use_lcd_text); ...
4 years, 4 months ago (2016-07-27 18:18:37 UTC) #53
Menglin
https://codereview.chromium.org/2141233002/diff/140001/cc/layers/picture_layer.cc File cc/layers/picture_layer.cc (right): https://codereview.chromium.org/2141233002/diff/140001/cc/layers/picture_layer.cc#newcode64 cc/layers/picture_layer.cc:64: recording_source_->CreateRasterSource(can_use_lcd_text); On 2016/07/27 18:18:37, vmpstr wrote: > On 2016/07/26 ...
4 years, 4 months ago (2016-07-27 19:17:48 UTC) #54
Menglin
wkorman, could you comment on this? https://codereview.chromium.org/2141233002/diff/140001/cc/playback/recording_source.cc#oldcode153
4 years, 4 months ago (2016-07-27 19:19:03 UTC) #56
wkorman
https://codereview.chromium.org/2141233002/diff/140001/cc/playback/recording_source.cc File cc/playback/recording_source.cc (left): https://codereview.chromium.org/2141233002/diff/140001/cc/playback/recording_source.cc#oldcode153 cc/playback/recording_source.cc:153: case RECORD_WITH_PAINTING_DISABLED: On 2016/07/27 at 19:17:48, Menglin wrote: > ...
4 years, 4 months ago (2016-07-27 20:12:41 UTC) #57
vmpstr
https://codereview.chromium.org/2141233002/diff/140001/cc/playback/recording_source.cc File cc/playback/recording_source.cc (left): https://codereview.chromium.org/2141233002/diff/140001/cc/playback/recording_source.cc#oldcode153 cc/playback/recording_source.cc:153: case RECORD_WITH_PAINTING_DISABLED: On 2016/07/27 20:12:40, wkorman wrote: > On ...
4 years, 4 months ago (2016-07-28 18:19:58 UTC) #58
Menglin
i'm working on updated patch. https://codereview.chromium.org/2141233002/diff/140001/cc/playback/recording_source.cc File cc/playback/recording_source.cc (left): https://codereview.chromium.org/2141233002/diff/140001/cc/playback/recording_source.cc#oldcode153 cc/playback/recording_source.cc:153: case RECORD_WITH_PAINTING_DISABLED: On 2016/07/28 ...
4 years, 4 months ago (2016-07-29 21:32:56 UTC) #59
Menglin
I uploaded a new patch. ptal. Thanks! Menglin https://codereview.chromium.org/2141233002/diff/140001/cc/layers/picture_layer.cc File cc/layers/picture_layer.cc (right): https://codereview.chromium.org/2141233002/diff/140001/cc/layers/picture_layer.cc#newcode212 cc/layers/picture_layer.cc:212: for ...
4 years, 4 months ago (2016-07-29 23:50:15 UTC) #60
wkorman
FYI http://crrev.com/1484163002 will likely conflict with this change and require some manual merigng. I am ...
4 years, 4 months ago (2016-07-29 23:59:27 UTC) #61
Menglin
On 2016/07/29 23:59:27, wkorman wrote: > FYI http://crrev.com/1484163002 will likely conflict with this change and ...
4 years, 4 months ago (2016-07-30 00:21:11 UTC) #62
wkorman
On 2016/07/30 at 00:21:11, mlliu wrote: > On 2016/07/29 23:59:27, wkorman wrote: > > FYI ...
4 years, 4 months ago (2016-07-30 00:32:17 UTC) #63
vmpstr
lgtm thanks https://codereview.chromium.org/2141233002/diff/160001/cc/playback/recording_source.cc File cc/playback/recording_source.cc (right): https://codereview.chromium.org/2141233002/diff/160001/cc/playback/recording_source.cc#newcode71 cc/playback/recording_source.cc:71: if (display_list_) { nit: braces optional
4 years, 4 months ago (2016-08-01 20:29:53 UTC) #64
Menglin
wkorman, i'm submitting this CL now! Thanks for everybody's comments on this refactor Menglin https://codereview.chromium.org/2141233002/diff/160001/cc/playback/recording_source.cc ...
4 years, 4 months ago (2016-08-02 02:58:43 UTC) #65
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/2141233002/180001
4 years, 4 months ago (2016-08-02 02:59:12 UTC) #68
commit-bot: I haz the power
Your CL relies on deprecated CQ feature(s): * Specifying master names in CQ_INCLUDE_TRYBOTS part of ...
4 years, 4 months ago (2016-08-02 02:59:15 UTC) #69
commit-bot: I haz the power
Try jobs failed on following builders: linux_blink_rel on tryserver.blink (JOB_FAILED, no build URL)
4 years, 4 months ago (2016-08-02 03:00:44 UTC) #71
Khushal
https://codereview.chromium.org/2141233002/diff/200001/cc/playback/recording_source.cc File cc/playback/recording_source.cc (right): https://codereview.chromium.org/2141233002/diff/200001/cc/playback/recording_source.cc#newcode105 cc/playback/recording_source.cc:105: ContentLayerClient* painter, Not used here anymore?
4 years, 4 months ago (2016-08-02 20:20:36 UTC) #73
wkorman
On 2016/08/02 at 02:58:43, mlliu wrote: > wkorman, i'm submitting this CL now! Ah, I ...
4 years, 4 months ago (2016-08-02 20:32:16 UTC) #74
Menglin
On 2016/08/02 20:32:16, wkorman wrote: > On 2016/08/02 at 02:58:43, mlliu wrote: > > wkorman, ...
4 years, 4 months ago (2016-08-02 20:40:37 UTC) #75
Menglin
trybots passed. submitting again https://codereview.chromium.org/2141233002/diff/200001/cc/playback/recording_source.cc File cc/playback/recording_source.cc (right): https://codereview.chromium.org/2141233002/diff/200001/cc/playback/recording_source.cc#newcode105 cc/playback/recording_source.cc:105: ContentLayerClient* painter, On 2016/08/02 20:20:36, ...
4 years, 4 months ago (2016-08-02 21:04:26 UTC) #76
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/2141233002/220001
4 years, 4 months ago (2016-08-02 21:05:54 UTC) #79
commit-bot: I haz the power
Committed patchset #12 (id:220001)
4 years, 4 months ago (2016-08-02 22:18:45 UTC) #81
commit-bot: I haz the power
4 years, 4 months ago (2016-08-02 22:20:44 UTC) #83
Message was sent while issue was closed.
Patchset 12 (id:??) landed as
https://crrev.com/51126b7275df6aa885015cf4693901003358049c
Cr-Commit-Position: refs/heads/master@{#409348}

Powered by Google App Engine
This is Rietveld 408576698