|
|
Created:
4 years, 9 months ago by etienneb Modified:
4 years, 8 months ago CC:
blink-reviews, chromium-reviews, gavinp+loader_chromium.org, Nate Chapin, loading-reviews+fetch_chromium.org, tyoshino+watch_chromium.org Base URL:
https://chromium.googlesource.com/chromium/src.git@master Target Ref:
refs/pending/heads/master Project:
chromium Visibility:
Public. |
DescriptionFix missing comma in HeadersToIgnore array.
R=mkwst@chromium.org, morrita@chromium.org
BUG=589955
Committed: https://crrev.com/f6a13f365cebaa2e53f32a07dcc79b52134a9d60
Cr-Commit-Position: refs/heads/master@{#384507}
Patch Set 1 #Patch Set 2 : adding unittest #
Total comments: 4
Patch Set 3 : rebased #
Messages
Total messages: 47 (23 generated)
Description was changed from ========== Fix missing comma in HeadersToIngore array. R=mkwst@chromium.org, morrita@chromium.org BUG=589955 ========== to ========== Fix missing comma in HeadersToIgnore array. R=mkwst@chromium.org, morrita@chromium.org BUG=589955 ==========
The CQ bit was checked by etienneb@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805713002/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805713002/1
PTAL.
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: This issue passed the CQ dry run.
Ah! That's a terrible bug, good catch. LGTM, but please add a test to make sure we don't regress this.
Mike West, could you look back over my shoulders. I have no idea what I'm doing in these files. I added an unittest. It's catching the mistake. I want to be sure I'm using correctly these classes and their API. It's not a piece of code I'm familiar with. Please, re-lgtm.
The CQ bit was checked by etienneb@chromium.org
The patchset sent to the CQ was uploaded after l-g-t-m from mkwst@chromium.org Link to the patchset: https://codereview.chromium.org/1805713002/#ps20001 (title: "adding unittest")
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805713002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805713002/20001
The CQ bit was unchecked by commit-bot@chromium.org
Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_...) mac_chromium_gn_rel on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_gn_r...)
The CQ bit was checked by etienneb@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805713002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805713002/20001
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: mac_chromium_compile_dbg_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_comp...)
The CQ bit was checked by etienneb@chromium.org
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805713002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805713002/20001
The CQ bit was unchecked by commit-bot@chromium.org
Try jobs failed on following builders: mac_chromium_gn_rel on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_gn_r...) mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_...)
The CQ bit was checked by etienneb@chromium.org
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805713002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805713002/20001
The CQ bit was unchecked by commit-bot@chromium.org
Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_...)
grt@chromium.org changed reviewers: + grt@chromium.org
Your checkout is out of date; see below. https://codereview.chromium.org/1805713002/diff/20001/third_party/WebKit/Sour... File third_party/WebKit/Source/core/fetch/RawResourceTest.cpp (right): https://codereview.chromium.org/1805713002/diff/20001/third_party/WebKit/Sour... third_party/WebKit/Source/core/fetch/RawResourceTest.cpp:179: ResourcePtr<Resource> resource = new RawResource(ResourceRequest("data:text/html,"), Resource::Raw); new RawResource -> RawResource::create ResourcePtr -> RefPtrWillBeRawPtr (http://crrev.com/486e9870) https://codereview.chromium.org/1805713002/diff/20001/third_party/WebKit/Sour... third_party/WebKit/Source/core/fetch/RawResourceTest.cpp:235: EXPECT_FALSE(resource->hasClients()); hasClients -> hasClientsOrObservers (http://crrev.com/a4581858)
thanks grt@ https://codereview.chromium.org/1805713002/diff/20001/third_party/WebKit/Sour... File third_party/WebKit/Source/core/fetch/RawResourceTest.cpp (right): https://codereview.chromium.org/1805713002/diff/20001/third_party/WebKit/Sour... third_party/WebKit/Source/core/fetch/RawResourceTest.cpp:179: ResourcePtr<Resource> resource = new RawResource(ResourceRequest("data:text/html,"), Resource::Raw); On 2016/03/31 15:14:25, grt (very slow) wrote: > new RawResource -> RawResource::create > ResourcePtr -> RefPtrWillBeRawPtr > (http://crrev.com/486e9870) Done. https://codereview.chromium.org/1805713002/diff/20001/third_party/WebKit/Sour... third_party/WebKit/Source/core/fetch/RawResourceTest.cpp:235: EXPECT_FALSE(resource->hasClients()); On 2016/03/31 15:14:25, grt (very slow) wrote: > hasClients -> hasClientsOrObservers > (http://crrev.com/a4581858) Done.
The CQ bit was checked by etienneb@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805713002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805713002/40001
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_...)
The CQ bit was checked by etienneb@chromium.org
The patchset sent to the CQ was uploaded after l-g-t-m from mkwst@chromium.org Link to the patchset: https://codereview.chromium.org/1805713002/#ps40001 (title: "rebased")
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805713002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805713002/40001
The CQ bit was unchecked by commit-bot@chromium.org
Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_...)
The CQ bit was checked by etienneb@chromium.org
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805713002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805713002/40001
The CQ bit was unchecked by commit-bot@chromium.org
Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_TIMED_OUT, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_...)
The CQ bit was checked by etienneb@chromium.org
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805713002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805713002/40001
Message was sent while issue was closed.
Description was changed from ========== Fix missing comma in HeadersToIgnore array. R=mkwst@chromium.org, morrita@chromium.org BUG=589955 ========== to ========== Fix missing comma in HeadersToIgnore array. R=mkwst@chromium.org, morrita@chromium.org BUG=589955 ==========
Message was sent while issue was closed.
Committed patchset #3 (id:40001)
Message was sent while issue was closed.
Description was changed from ========== Fix missing comma in HeadersToIgnore array. R=mkwst@chromium.org, morrita@chromium.org BUG=589955 ========== to ========== Fix missing comma in HeadersToIgnore array. R=mkwst@chromium.org, morrita@chromium.org BUG=589955 Committed: https://crrev.com/f6a13f365cebaa2e53f32a07dcc79b52134a9d60 Cr-Commit-Position: refs/heads/master@{#384507} ==========
Message was sent while issue was closed.
Patchset 3 (id:??) landed as https://crrev.com/f6a13f365cebaa2e53f32a07dcc79b52134a9d60 Cr-Commit-Position: refs/heads/master@{#384507} |