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

Issue 2939773005: [POC] Implement "module responses map" concept (Closed)

Created:
3 years, 6 months ago by nhiroki
Modified:
3 years, 4 months ago
Reviewers:
CC:
chromium-reviews, sof, blink-reviews-dom_chromium.org, kouhei+script_chromium.org, eae+blinkwatch, hiroshige+script_chromium.org, dglazkov+blink, blink-reviews, rwlbuis, kochi+script_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

[POC] Implement "module responses map" concept All patches were landed (see the issue) BUG=726576

Patch Set 1 #

Patch Set 2 : wip #

Patch Set 3 : Custom fetch #

Patch Set 4 : rebase #

Patch Set 5 : WIP #

Patch Set 6 : WIP #

Patch Set 7 : WIP #

Patch Set 8 : WIP #

Patch Set 9 : WIP #

Patch Set 10 : WIP #

Patch Set 11 : WIP #

Patch Set 12 : WIP #

Patch Set 13 : WIP #

Patch Set 14 : WIP #

Patch Set 15 : WIP #

Patch Set 16 : WorkletModuleScriptFetcher #

Patch Set 17 : WIP #

Patch Set 18 : WIP #

Patch Set 19 : WIP #

Patch Set 20 : WIP #

Patch Set 21 : WIP #

Patch Set 22 : WIP #

Patch Set 23 : rebase #

Patch Set 24 : WIP #

Patch Set 25 : WIP #

Patch Set 26 : WIP #

Patch Set 27 : remake #

Patch Set 28 : WIP #

Patch Set 29 : WIP #

Patch Set 30 : WIP #

Patch Set 31 : introduce client #

Patch Set 32 : wip #

Patch Set 33 : ClientWrapper #

Patch Set 34 : WIP #

Patch Set 35 : WIP #

Patch Set 36 : WIP #

Patch Set 37 : rebase #

Patch Set 38 : wip #

Patch Set 39 : WIP #

Patch Set 40 : fix #

Patch Set 41 : WIP #

Patch Set 42 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+526 lines, -111 lines) Patch
M third_party/WebKit/Source/core/dom/TaskRunnerHelper.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +2 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/loader/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 34 35 36 2 chunks +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/loader/modulescript/ModuleScriptCreationParams.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 35 36 1 chunk +4 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/loader/modulescript/ModuleScriptFetcher.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 35 36 37 38 1 chunk +54 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/loader/modulescript/ModuleScriptFetcher.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 33 34 35 36 37 38 39 1 chunk +122 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/loader/modulescript/ModuleScriptLoader.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 35 36 37 38 6 chunks +8 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/core/loader/modulescript/ModuleScriptLoader.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 33 34 35 36 37 38 5 chunks +25 lines, -88 lines 0 comments Download
A third_party/WebKit/Source/core/loader/modulescript/WorkletModuleScriptFetcher.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 35 36 37 38 1 chunk +45 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/loader/modulescript/WorkletModuleScriptFetcher.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 33 34 35 36 37 38 1 chunk +54 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/workers/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 34 35 36 37 38 39 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.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 35 36 37 38 39 40 3 chunks +8 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/workers/MainThreadWorkletGlobalScope.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 33 34 35 36 37 38 39 40 4 chunks +16 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/workers/ThreadedWorkletMessagingProxy.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/workers/ThreadedWorkletMessagingProxy.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 33 34 35 36 37 38 39 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/workers/Worklet.h View 1 2 3 4 5 6 7 2 chunks +7 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/workers/Worklet.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +7 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/workers/WorkletGlobalScopeProxy.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/workers/WorkletModuleResponsesMapProxy.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 1 chunk +49 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/workers/WorkletModuleResponsesMapProxy.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 33 34 35 36 37 38 39 40 1 chunk +109 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScopeProxy.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScopeProxy.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +4 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/loader/fetch/FetchParameters.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 +1 line, -1 line 0 comments Download

Messages

Total messages: 76 (76 generated)
nhiroki
Description was changed from ========== [WIP] Custom fetch BUG= ========== to ========== [WIP] Implement "module ...
3 years, 6 months ago (2017-06-23 04:24:20 UTC) #1
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 6 months ago (2017-06-26 04:30:20 UTC) #2
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/360001
3 years, 6 months ago (2017-06-26 04:30:32 UTC) #3
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 6 months ago (2017-06-26 04:32:41 UTC) #4
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios-device on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device/builds/239393) ios-device-xcode-clang on ...
3 years, 6 months ago (2017-06-26 04:32:42 UTC) #5
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 6 months ago (2017-06-26 05:21:00 UTC) #6
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/400001
3 years, 6 months ago (2017-06-26 05:21:15 UTC) #7
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 6 months ago (2017-06-26 05:23:19 UTC) #8
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios-device on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device/builds/239420) ios-device-xcode-clang on ...
3 years, 6 months ago (2017-06-26 05:23:20 UTC) #9
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 6 months ago (2017-06-26 06:30:10 UTC) #10
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/420001
3 years, 6 months ago (2017-06-26 06:30:22 UTC) #11
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 6 months ago (2017-06-26 06:32:33 UTC) #12
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios-device on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device/builds/239453) ios-device-xcode-clang on ...
3 years, 6 months ago (2017-06-26 06:32:34 UTC) #13
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-06-26 08:55:45 UTC) #14
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/430031
3 years, 5 months ago (2017-06-26 08:55:58 UTC) #15
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-06-26 10:00:07 UTC) #16
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_tsan_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_tsan_rel_ng/builds/103790)
3 years, 5 months ago (2017-06-26 10:00:08 UTC) #17
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-06-27 02:35:38 UTC) #18
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/450001
3 years, 5 months ago (2017-06-27 02:35:54 UTC) #19
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-06-27 05:06:10 UTC) #20
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
3 years, 5 months ago (2017-06-27 05:06:12 UTC) #21
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-06-27 07:56:23 UTC) #22
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/490001
3 years, 5 months ago (2017-06-27 07:56:33 UTC) #23
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-06-27 09:59:09 UTC) #24
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
3 years, 5 months ago (2017-06-27 09:59:10 UTC) #25
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-06-27 12:01:15 UTC) #26
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/490001
3 years, 5 months ago (2017-06-27 12:01:18 UTC) #27
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-06-27 12:06:37 UTC) #28
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
3 years, 5 months ago (2017-06-27 12:06:38 UTC) #29
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-06-28 03:32:47 UTC) #30
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/490001
3 years, 5 months ago (2017-06-28 03:33:04 UTC) #31
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-06-28 03:38:20 UTC) #32
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
3 years, 5 months ago (2017-06-28 03:38:21 UTC) #33
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-06-28 03:49:01 UTC) #34
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/490001
3 years, 5 months ago (2017-06-28 03:49:20 UTC) #35
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-06-28 03:53:53 UTC) #36
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
3 years, 5 months ago (2017-06-28 03:53:54 UTC) #37
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-07-07 09:01:55 UTC) #38
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/550001
3 years, 5 months ago (2017-07-07 09:02:00 UTC) #39
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-07-07 10:54:32 UTC) #40
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
3 years, 5 months ago (2017-07-07 10:54:33 UTC) #41
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-07-10 08:17:21 UTC) #42
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/590001
3 years, 5 months ago (2017-07-10 08:17:30 UTC) #43
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-07-10 08:32:52 UTC) #44
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/610001
3 years, 5 months ago (2017-07-10 08:32:59 UTC) #45
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-07-10 10:57:19 UTC) #46
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
3 years, 5 months ago (2017-07-10 10:57:20 UTC) #47
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-07-11 02:15:20 UTC) #48
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/630001
3 years, 5 months ago (2017-07-11 02:15:33 UTC) #49
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-07-11 04:30:44 UTC) #50
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/690001
3 years, 5 months ago (2017-07-11 04:30:51 UTC) #51
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-07-11 06:39:14 UTC) #52
commit-bot: I haz the power
Dry run: 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/497501)
3 years, 5 months ago (2017-07-11 06:39:16 UTC) #53
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-07-18 05:26:15 UTC) #54
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/750001
3 years, 5 months ago (2017-07-18 05:26:24 UTC) #55
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-07-18 06:19:51 UTC) #56
commit-bot: I haz the power
Dry run: 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/503299)
3 years, 5 months ago (2017-07-18 06:19:53 UTC) #57
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-07-18 13:57:29 UTC) #58
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/770001
3 years, 5 months ago (2017-07-18 13:57:41 UTC) #59
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-07-18 14:47:25 UTC) #60
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/790001
3 years, 5 months ago (2017-07-18 14:47:32 UTC) #61
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-07-18 16:37:03 UTC) #62
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_rel_ng on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/502905)
3 years, 5 months ago (2017-07-18 16:37:04 UTC) #63
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-07-19 05:06:39 UTC) #64
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/810001
3 years, 5 months ago (2017-07-19 05:06:48 UTC) #65
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-07-19 07:13:41 UTC) #66
commit-bot: I haz the power
Dry run: 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/504330)
3 years, 5 months ago (2017-07-19 07:13:43 UTC) #67
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-07-24 02:14:41 UTC) #68
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/810001
3 years, 5 months ago (2017-07-24 02:14:52 UTC) #69
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-07-24 02:18:02 UTC) #70
commit-bot: I haz the power
Dry run: 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/497329)
3 years, 5 months ago (2017-07-24 02:18:03 UTC) #71
nhiroki
The CQ bit was checked by nhiroki@chromium.org to run a CQ dry run
3 years, 5 months ago (2017-07-24 04:58:31 UTC) #72
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2939773005/810001
3 years, 5 months ago (2017-07-24 04:58:42 UTC) #73
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 5 months ago (2017-07-24 05:02:32 UTC) #74
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_cronet on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_cronet/builds/185312)
3 years, 5 months ago (2017-07-24 05:02:33 UTC) #75
nhiroki
3 years, 4 months ago (2017-07-28 14:01:57 UTC) #76
Description was changed from

==========
[WIP] Implement "module responses map" concept

BUG=726576
==========

to

==========
[POC] Implement "module responses map" concept

All patches were landed (see the issue)

BUG=726576
==========

Powered by Google App Engine
This is Rietveld 408576698