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

Issue 1866043006: cc: Remove ScheduleOnOriginThread() and CompleteOnOriginThread(). (Closed)

Created:
4 years, 8 months ago by prashant.n
Modified:
4 years, 7 months ago
Reviewers:
reveman, vmpstr, ericrk
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: Remove ScheduleOnOriginThread() and CompleteOnOriginThread(). The task's job is performed in RunOnWorkerThread() and schedule or complete are not needed as a part of task's job. Those are the responsibilities of task's owner (TileManager - compositor thread). This patch removes following functions which were basically needed for async upload. Now raster buffer is provided to task at the time of ctor and functionality of CompleteOnOriginThread() is moved to task's owner. ScheduleOnOriginThread() CompleteOnOriginThread() New OnTaskCompleted() function calls corresponding function of task owner. This patch implements following life cycle for the task. 1. Task's owner creates task with all needed info on origin thread. 2. Task is scheduled and run on worker thread. 3. Completed task is processed on origin thread by task owner. 4. Task is destroyed. This patch also fixes few task related failing cc_perftests (607818). BUG=499372, 599863, 607818, 613529 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Committed: https://crrev.com/06e1561a832083330a193743a427b1354ab3cd39 Cr-Commit-Position: refs/heads/master@{#396218}

Patch Set 1 : wip #

Total comments: 4

Patch Set 2 : wip - feedback #

Patch Set 3 : wip - fixed few unit tests #

Total comments: 2

Patch Set 4 : wip - fixed perf tests #

Patch Set 5 : wip - fixed few unit tests #

Patch Set 6 : nits #

Total comments: 2

Patch Set 7 : nits #

Patch Set 8 : rebase #

Patch Set 9 : nits #

Total comments: 1

Patch Set 10 : fixed build break #

Patch Set 11 : fixed broken tile manager tests #

Patch Set 12 : nits #

Patch Set 13 : fixed broken pixel resource tests #

Patch Set 14 : remove ScheduleOnOriginThread() #

Patch Set 15 : removed CompleteOnOriginThread() #

Patch Set 16 : fixed unittests #

Patch Set 17 : fixed perf_tests #

Patch Set 18 : nits #

Total comments: 19

Patch Set 19 : feedback #

Patch Set 20 : corrections #

Patch Set 21 : nits #

Total comments: 6

Patch Set 22 : feedback #

Patch Set 23 : fixed bug 613529 #

Total comments: 17

Patch Set 24 : feedback #

Patch Set 25 : rebase #

Total comments: 3

Patch Set 26 : feedback #

Total comments: 1

Patch Set 27 : nits #

Patch Set 28 : nits #

Unified diffs Side-by-side diffs Delta from patch set Stats (+273 lines, -329 lines) Patch
M cc/raster/raster_buffer_provider_perftest.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 10 chunks +51 lines, -27 lines 0 comments Download
M cc/raster/raster_buffer_provider_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 8 chunks +59 lines, -42 lines 0 comments Download
M cc/raster/task.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +21 lines, -5 lines 0 comments Download
M cc/raster/task.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 3 chunks +6 lines, -1 line 0 comments Download
M cc/raster/task_graph_runner_perftest.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 +5 lines, -0 lines 0 comments Download
M cc/raster/tile_task.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 +3 lines, -13 lines 0 comments Download
M cc/raster/tile_task.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +3 lines, -38 lines 0 comments Download
M cc/test/fake_tile_task_manager.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 +2 lines, -1 line 0 comments Download
M cc/test/fake_tile_task_manager.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 +10 lines, -13 lines 0 comments Download
M cc/test/task_graph_runner_test_template.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +2 lines, -0 lines 0 comments Download
M cc/tiles/gpu_image_decode_controller.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 +4 lines, -2 lines 0 comments Download
M cc/tiles/gpu_image_decode_controller.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 4 chunks +7 lines, -8 lines 0 comments Download
M cc/tiles/gpu_image_decode_controller_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 9 chunks +19 lines, -20 lines 0 comments Download
M cc/tiles/software_image_decode_controller.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 +1 line, -2 lines 0 comments Download
M cc/tiles/software_image_decode_controller_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 12 chunks +9 lines, -54 lines 0 comments Download
M cc/tiles/tile_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +5 lines, -5 lines 0 comments Download
M cc/tiles/tile_manager.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 11 chunks +49 lines, -31 lines 0 comments Download
M cc/tiles/tile_manager_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 5 chunks +6 lines, -34 lines 0 comments Download
M cc/tiles/tile_task_manager.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 2 chunks +4 lines, -7 lines 0 comments Download
M cc/tiles/tile_task_manager.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 +7 lines, -26 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 97 (28 generated)
prashant.n
https://codereview.chromium.org/1866043006/diff/1/cc/tiles/software_image_decode_controller.cc File cc/tiles/software_image_decode_controller.cc (right): https://codereview.chromium.org/1866043006/diff/1/cc/tiles/software_image_decode_controller.cc#newcode76 cc/tiles/software_image_decode_controller.cc:76: controller_->RemovePendingTask(image_key_); By moving this code from CompleteOnOriginThread() hurts current ...
4 years, 8 months ago (2016-04-08 16:38:39 UTC) #3
vmpstr
Overall, I like this change if we can fix the issues below https://codereview.chromium.org/1866043006/diff/1/cc/tiles/software_image_decode_controller.cc File cc/tiles/software_image_decode_controller.cc ...
4 years, 8 months ago (2016-04-08 18:59:16 UTC) #4
prashant.n
On 2016/04/08 18:59:16, vmpstr wrote: > Overall, I like this change if we can fix ...
4 years, 8 months ago (2016-04-08 19:41:27 UTC) #5
prashant.n
I'll add CompleteImageTask function to image decode controller.
4 years, 8 months ago (2016-04-09 04:03:02 UTC) #6
prashant.n
Kindly comment on approach. https://codereview.chromium.org/1866043006/diff/40001/cc/raster/task_graph_runner.h File cc/raster/task_graph_runner.h (right): https://codereview.chromium.org/1866043006/diff/40001/cc/raster/task_graph_runner.h#newcode34 cc/raster/task_graph_runner.h:34: TaskTypeId GetTaskTypeId(); This looks little ...
4 years, 8 months ago (2016-04-11 14:17:48 UTC) #7
prashant.n
https://codereview.chromium.org/1866043006/diff/40001/cc/raster/tile_task_worker_pool_unittest.cc File cc/raster/tile_task_worker_pool_unittest.cc (right): https://codereview.chromium.org/1866043006/diff/40001/cc/raster/tile_task_worker_pool_unittest.cc#newcode187 cc/raster/tile_task_worker_pool_unittest.cc:187: for (auto task : completed_tasks) { Add comment or ...
4 years, 8 months ago (2016-04-11 14:51:52 UTC) #8
prashant.n
ptal https://codereview.chromium.org/1866043006/diff/100001/cc/raster/one_copy_tile_task_worker_pool.cc File cc/raster/one_copy_tile_task_worker_pool.cc (right): https://codereview.chromium.org/1866043006/diff/100001/cc/raster/one_copy_tile_task_worker_pool.cc#newcode265 cc/raster/one_copy_tile_task_worker_pool.cc:265: DCHECK(resource->size().width() && resource->size().height()); With width = 0, it ...
4 years, 8 months ago (2016-04-12 15:57:45 UTC) #10
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1866043006/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1866043006/120001
4 years, 8 months ago (2016-04-12 16:05:23 UTC) #12
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_gn on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_gn/builds/17760) ios_dbg_simulator_ninja on ...
4 years, 8 months ago (2016-04-12 16:07:57 UTC) #14
prashant.n
I'll take care of gpu_image_decode_controller latest changes soon.
4 years, 8 months ago (2016-04-12 16:47:33 UTC) #15
prashant.n
Modified gpu_image_decode_controller_unittest.cc tests accordingly. PTAL.
4 years, 8 months ago (2016-04-13 10:20:41 UTC) #17
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1866043006/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1866043006/160001
4 years, 8 months ago (2016-04-13 10:21:11 UTC) #19
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_blink_rel on tryserver.blink (JOB_FAILED, http://build.chromium.org/p/tryserver.blink/builders/linux_blink_rel/builds/84696)
4 years, 8 months ago (2016-04-13 10:57:21 UTC) #22
prashant.n
https://codereview.chromium.org/1866043006/diff/160001/cc/tiles/tile_manager.cc File cc/tiles/tile_manager.cc (right): https://codereview.chromium.org/1866043006/diff/160001/cc/tiles/tile_manager.cc#newcode926 cc/tiles/tile_manager.cc:926: DCHECK(tiles_.find(raster_task->tile_->id()) == tiles_.end()); The check should be !=
4 years, 8 months ago (2016-04-13 12:04:51 UTC) #23
prashant.n
ptal
4 years, 8 months ago (2016-04-13 12:10:44 UTC) #24
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1866043006/180001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1866043006/180001
4 years, 8 months ago (2016-04-13 12:11:05 UTC) #26
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/204279)
4 years, 8 months ago (2016-04-13 12:52:30 UTC) #28
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1866043006/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1866043006/240001
4 years, 8 months ago (2016-04-13 15:14:22 UTC) #31
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-13 16:08:52 UTC) #33
prashant.n
ptal - patch #1.
4 years, 8 months ago (2016-04-15 07:03:27 UTC) #34
prashant.n
ping
4 years, 8 months ago (2016-04-17 18:30:48 UTC) #35
reveman
On 2016/04/17 at 18:30:48, prashant.n wrote: > ping As this depends on another patch. I'm ...
4 years, 8 months ago (2016-04-17 20:10:07 UTC) #36
prashant.n
On 2016/04/17 20:10:07, reveman wrote: > On 2016/04/17 at 18:30:48, prashant.n wrote: > > ping ...
4 years, 8 months ago (2016-04-18 02:48:07 UTC) #37
prashant.n
> Actually this is first patch which removes schedule and complete. I'll change the dependency ...
4 years, 8 months ago (2016-04-18 05:13:15 UTC) #38
ericrk
On 2016/04/18 05:13:15, prashant.n wrote: > > Actually this is first patch which removes schedule ...
4 years, 7 months ago (2016-05-02 20:17:38 UTC) #39
prashant.n
> Is this patch still needed? If so, can you rebase now that the "Simplify ...
4 years, 7 months ago (2016-05-03 02:09:55 UTC) #40
prashant.n
PTAL. In this patch, I've removed only ScheduleOnOriginThread(). As CompleteOnOriginThread() has different definitions for different ...
4 years, 7 months ago (2016-05-16 15:12:20 UTC) #42
reveman
lgtm % ericrk's review Removing CompleteOnOriginThread would be nice as a next step. Maybe just ...
4 years, 7 months ago (2016-05-17 13:45:03 UTC) #44
prashant.n
I'm fixing few perf tests which are failing in debug mode.
4 years, 7 months ago (2016-05-17 15:57:49 UTC) #45
prashant.n
> I'm fixing few perf tests which are failing in debug mode. Looks for this ...
4 years, 7 months ago (2016-05-17 16:09:08 UTC) #46
prashant.n
PTAL.
4 years, 7 months ago (2016-05-18 14:54:26 UTC) #48
reveman
https://codereview.chromium.org/1866043006/diff/330001/cc/raster/tile_task.h File cc/raster/tile_task.h (right): https://codereview.chromium.org/1866043006/diff/330001/cc/raster/tile_task.h#newcode19 cc/raster/tile_task.h:19: enum class Type : uint16_t { DEFAULT, RASTER, IMAGE_DECODE, ...
4 years, 7 months ago (2016-05-18 16:20:31 UTC) #49
prashant.n
https://codereview.chromium.org/1866043006/diff/330001/cc/raster/tile_task.h File cc/raster/tile_task.h (right): https://codereview.chromium.org/1866043006/diff/330001/cc/raster/tile_task.h#newcode19 cc/raster/tile_task.h:19: enum class Type : uint16_t { DEFAULT, RASTER, IMAGE_DECODE, ...
4 years, 7 months ago (2016-05-18 16:45:38 UTC) #50
reveman
https://codereview.chromium.org/1866043006/diff/330001/cc/raster/tile_task.h File cc/raster/tile_task.h (right): https://codereview.chromium.org/1866043006/diff/330001/cc/raster/tile_task.h#newcode19 cc/raster/tile_task.h:19: enum class Type : uint16_t { DEFAULT, RASTER, IMAGE_DECODE, ...
4 years, 7 months ago (2016-05-18 17:16:48 UTC) #51
prashant.n
> > No, this is not what I meant. Something seems off when we have ...
4 years, 7 months ago (2016-05-18 18:25:50 UTC) #52
reveman
On 2016/05/18 at 18:25:50, prashant.n wrote: > > > > No, this is not what ...
4 years, 7 months ago (2016-05-18 18:46:39 UTC) #53
vmpstr
https://codereview.chromium.org/1866043006/diff/330001/cc/raster/task.h File cc/raster/task.h (right): https://codereview.chromium.org/1866043006/diff/330001/cc/raster/task.h#newcode19 cc/raster/task.h:19: // if scheduled concludes in COMPLETED state. So possible ...
4 years, 7 months ago (2016-05-18 19:08:34 UTC) #54
prashant.n
https://codereview.chromium.org/1866043006/diff/330001/cc/raster/task.h File cc/raster/task.h (right): https://codereview.chromium.org/1866043006/diff/330001/cc/raster/task.h#newcode19 cc/raster/task.h:19: // if scheduled concludes in COMPLETED state. So possible ...
4 years, 7 months ago (2016-05-19 00:59:52 UTC) #55
prashant.n
ptal. addressed review comments.
4 years, 7 months ago (2016-05-19 11:59:21 UTC) #56
prashant.n
https://codereview.chromium.org/1866043006/diff/330001/cc/raster/task_graph_runner_perftest.cc File cc/raster/task_graph_runner_perftest.cc (right): https://codereview.chromium.org/1866043006/diff/330001/cc/raster/task_graph_runner_perftest.cc#newcode275 cc/raster/task_graph_runner_perftest.cc:275: for (auto task : *completed_tasks) { It is scoped_refptr ...
4 years, 7 months ago (2016-05-19 14:32:30 UTC) #57
ericrk
https://codereview.chromium.org/1866043006/diff/390001/cc/tiles/tile_manager.cc File cc/tiles/tile_manager.cc (right): https://codereview.chromium.org/1866043006/diff/390001/cc/tiles/tile_manager.cc#newcode793 cc/tiles/tile_manager.cc:793: // DCHECK(!task->state().IsFinished()); Does this mean that this check was ...
4 years, 7 months ago (2016-05-19 23:04:08 UTC) #59
ericrk
https://codereview.chromium.org/1866043006/diff/330001/cc/raster/task_graph_runner_perftest.cc File cc/raster/task_graph_runner_perftest.cc (right): https://codereview.chromium.org/1866043006/diff/330001/cc/raster/task_graph_runner_perftest.cc#newcode275 cc/raster/task_graph_runner_perftest.cc:275: for (auto task : *completed_tasks) { On 2016/05/19 14:32:30, ...
4 years, 7 months ago (2016-05-19 23:19:37 UTC) #60
prashant.n
https://codereview.chromium.org/1866043006/diff/390001/cc/raster/raster_buffer_provider_perftest.cc File cc/raster/raster_buffer_provider_perftest.cc (right): https://codereview.chromium.org/1866043006/diff/390001/cc/raster/raster_buffer_provider_perftest.cc#newcode141 cc/raster/raster_buffer_provider_perftest.cc:141: class PerfRasterBufferProviderHelper { On 2016/05/19 23:19:37, ericrk wrote: > ...
4 years, 7 months ago (2016-05-20 01:57:17 UTC) #61
prashant.n
ptal. https://codereview.chromium.org/1866043006/diff/330001/cc/raster/task_graph_runner_perftest.cc File cc/raster/task_graph_runner_perftest.cc (right): https://codereview.chromium.org/1866043006/diff/330001/cc/raster/task_graph_runner_perftest.cc#newcode275 cc/raster/task_graph_runner_perftest.cc:275: for (auto task : *completed_tasks) { Now I ...
4 years, 7 months ago (2016-05-20 11:48:52 UTC) #62
prashant.n
> Now I understood why vmpstr added comment. Thank you for point out this. I ...
4 years, 7 months ago (2016-05-20 11:51:58 UTC) #64
prashant.n
> Now I understood why vmpstr added comment. Thank you for point out this. I ...
4 years, 7 months ago (2016-05-20 11:52:01 UTC) #65
vmpstr
https://codereview.chromium.org/1866043006/diff/430001/cc/raster/task.cc File cc/raster/task.cc (right): https://codereview.chromium.org/1866043006/diff/430001/cc/raster/task.cc#newcode17 cc/raster/task.cc:17: // cycle correctly. Few tests still do not take ...
4 years, 7 months ago (2016-05-21 00:02:14 UTC) #66
prashant.n
https://codereview.chromium.org/1866043006/diff/430001/cc/raster/task.cc File cc/raster/task.cc (right): https://codereview.chromium.org/1866043006/diff/430001/cc/raster/task.cc#newcode17 cc/raster/task.cc:17: // cycle correctly. Few tests still do not take ...
4 years, 7 months ago (2016-05-21 00:33:53 UTC) #67
prashant.n
https://codereview.chromium.org/1866043006/diff/430001/cc/tiles/tile_manager_unittest.cc File cc/tiles/tile_manager_unittest.cc (right): https://codereview.chromium.org/1866043006/diff/430001/cc/tiles/tile_manager_unittest.cc#newcode1911 cc/tiles/tile_manager_unittest.cc:1911: using CancellingTileTaskManager = FakeTileTaskManagerImpl; On 2016/05/21 00:02:14, vmpstr wrote: ...
4 years, 7 months ago (2016-05-21 00:51:46 UTC) #68
prashant.n
ptal
4 years, 7 months ago (2016-05-21 16:29:33 UTC) #69
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1866043006/470001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1866043006/470001
4 years, 7 months ago (2016-05-23 09:58:48 UTC) #71
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/233712)
4 years, 7 months ago (2016-05-23 12:24:27 UTC) #73
prashant.n
ping.
4 years, 7 months ago (2016-05-24 02:56:18 UTC) #74
vmpstr
https://codereview.chromium.org/1866043006/diff/470001/cc/tiles/tile_manager.cc File cc/tiles/tile_manager.cc (right): https://codereview.chromium.org/1866043006/diff/470001/cc/tiles/tile_manager.cc#newcode806 cc/tiles/tile_manager.cc:806: // TileManager::Schedule(), happens. So if tile which had task ...
4 years, 7 months ago (2016-05-24 23:44:58 UTC) #75
prashant.n
https://codereview.chromium.org/1866043006/diff/470001/cc/tiles/tile_manager.cc File cc/tiles/tile_manager.cc (right): https://codereview.chromium.org/1866043006/diff/470001/cc/tiles/tile_manager.cc#newcode810 cc/tiles/tile_manager.cc:810: // finished. If task gets finished after it is ...
4 years, 7 months ago (2016-05-24 23:55:01 UTC) #76
reveman
still lg-tm once vmpstr and ericrk are happy
4 years, 7 months ago (2016-05-25 03:47:31 UTC) #77
prashant.n
On 2016/05/25 03:47:31, reveman wrote: > still lg-tm once vmpstr and ericrk are happy ptal, ...
4 years, 7 months ago (2016-05-25 13:12:49 UTC) #78
prashant.n
https://codereview.chromium.org/1866043006/diff/490001/cc/tiles/tile_manager.cc File cc/tiles/tile_manager.cc (right): https://codereview.chromium.org/1866043006/diff/490001/cc/tiles/tile_manager.cc#newcode268 cc/tiles/tile_manager.cc:268: void OnTaskCompleted() override{}; I'll correct this - before final ...
4 years, 7 months ago (2016-05-25 14:35:36 UTC) #79
vmpstr
lgtm if ericrk is ok with it.
4 years, 7 months ago (2016-05-25 19:53:43 UTC) #80
prashant.n
On 2016/05/25 19:53:43, vmpstr wrote: > lgtm if ericrk is ok with it. ericrk@, pls. ...
4 years, 7 months ago (2016-05-26 00:53:17 UTC) #81
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1866043006/510001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1866043006/510001
4 years, 7 months ago (2016-05-26 14:23:43 UTC) #83
commit-bot: I haz the power
Dry run: None
4 years, 7 months ago (2016-05-26 14:58:20 UTC) #84
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1866043006/530001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1866043006/530001
4 years, 7 months ago (2016-05-26 15:07:44 UTC) #86
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 7 months ago (2016-05-26 16:20:17 UTC) #88
commit-bot: I haz the power
Dry run: None
4 years, 7 months ago (2016-05-26 16:20:29 UTC) #89
ericrk
lgtm
4 years, 7 months ago (2016-05-26 17:28:46 UTC) #90
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1866043006/530001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1866043006/530001
4 years, 7 months ago (2016-05-26 17:30:27 UTC) #93
commit-bot: I haz the power
Committed patchset #28 (id:530001)
4 years, 7 months ago (2016-05-26 17:35:34 UTC) #95
commit-bot: I haz the power
4 years, 7 months ago (2016-05-26 17:38:04 UTC) #97
Message was sent while issue was closed.
Patchset 28 (id:??) landed as
https://crrev.com/06e1561a832083330a193743a427b1354ab3cd39
Cr-Commit-Position: refs/heads/master@{#396218}

Powered by Google App Engine
This is Rietveld 408576698