|
|
Created:
4 years, 5 months ago by hiroshige Modified:
4 years, 5 months ago CC:
blink-reviews, chromium-reviews, gavinp+loader_chromium.org, Nate Chapin, loading-reviews+fetch_chromium.org, tyoshino+watch_chromium.org, Yoav Weiss Base URL:
https://chromium.googlesource.com/chromium/src.git@master Target Ref:
refs/pending/heads/master Project:
chromium Visibility:
Public. |
DescriptionEnsure |m_image| is (re-)created in ImageResource::didAddClient()
After ImageResource is pruned, |m_image| can be turned into null, but is not
re-created when ResourceClient is added to ImageResource later.
We re-create |m_image| when ImageResourceObserver is added in
ImageResource::addObserver().
This CL do the same thing in ImageResource::didAddClient() to ensure |m_image|
is non-null when ImageResource is reused after pruning.
This is regression since ImageResourceClient was split into ResourceClient and
ImageResourceObserver but the |m_image| re-creation logic was put only in the
ImageResourceObserver path and not in the ResourceClient path:
https://codereview.chromium.org/1706083002
https://codereview.chromium.org/1728313003
BUG=618597, 587663
Committed: https://crrev.com/d415aad374ad81906840afbf4c05f0594f1f581b
Cr-Commit-Position: refs/heads/master@{#405024}
Patch Set 1 #
Total comments: 2
Patch Set 2 : Introduce ensureImage() #
Messages
Total messages: 29 (16 generated)
The CQ bit was checked by hiroshige@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
Description was changed from ========== Ensure |m_image| is (re-)created in ImageResource::didAddClient() BUG=618597 ========== to ========== Ensure |m_image| is (re-)created in ImageResource::didAddClient() After ImageResource is pruned, |m_image| can be turned into null, but is not re-created when ResourceClient is added to ImageResource later. We re-create |m_image| when ImageResourceObserver is added in ImageResource::addObserver(). This CL do the same thing in ImageResource::didAddClient() to ensure |m_image| is non-null when ImageResource is reused after pruning. BUG=618597 ==========
Description was changed from ========== Ensure |m_image| is (re-)created in ImageResource::didAddClient() After ImageResource is pruned, |m_image| can be turned into null, but is not re-created when ResourceClient is added to ImageResource later. We re-create |m_image| when ImageResourceObserver is added in ImageResource::addObserver(). This CL do the same thing in ImageResource::didAddClient() to ensure |m_image| is non-null when ImageResource is reused after pruning. BUG=618597 ========== to ========== Ensure |m_image| is (re-)created in ImageResource::didAddClient() After ImageResource is pruned, |m_image| can be turned into null, but is not re-created when ResourceClient is added to ImageResource later. We re-create |m_image| when ImageResourceObserver is added in ImageResource::addObserver(). This CL do the same thing in ImageResource::didAddClient() to ensure |m_image| is non-null when ImageResource is reused after pruning. This is regression since ImageResourceClient was split into ResourceClient and ImageResourceObserver but the |m_image| re-creation logic was put only in the ImageResourceObserver path and not in the ResourceClient path: https://codereview.chromium.org/1706083002 https://codereview.chromium.org/1728313003 BUG=618597, 587663 ==========
hiroshige@chromium.org changed reviewers: + hajimehoshi@chromium.org, mkwst@chromium.org, yhirano@chromium.org
PTAL.
https://codereview.chromium.org/2141843003/diff/1/third_party/WebKit/Source/c... File third_party/WebKit/Source/core/fetch/ImageResource.cpp (right): https://codereview.chromium.org/2141843003/diff/1/third_party/WebKit/Source/c... third_party/WebKit/Source/core/fetch/ImageResource.cpp:122: m_image->setData(m_data, true); There is same code in addObserver. How about creating a new function for this (like ensureImage)?
The CQ bit was checked by hiroshige@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
https://codereview.chromium.org/2141843003/diff/1/third_party/WebKit/Source/c... File third_party/WebKit/Source/core/fetch/ImageResource.cpp (right): https://codereview.chromium.org/2141843003/diff/1/third_party/WebKit/Source/c... third_party/WebKit/Source/core/fetch/ImageResource.cpp:122: m_image->setData(m_data, true); On 2016/07/12 08:38:26, hajimehoshi wrote: > There is same code in addObserver. How about creating a new function for this > (like ensureImage)? Done.
lgtm
LGTM too.
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_...)
lgtm
The CQ bit was checked by hiroshige@chromium.org
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_...) linux_chromium_chromeos_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_...)
The CQ bit was checked by hiroshige@chromium.org
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
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_...)
The CQ bit was checked by hiroshige@chromium.org
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
Message was sent while issue was closed.
Description was changed from ========== Ensure |m_image| is (re-)created in ImageResource::didAddClient() After ImageResource is pruned, |m_image| can be turned into null, but is not re-created when ResourceClient is added to ImageResource later. We re-create |m_image| when ImageResourceObserver is added in ImageResource::addObserver(). This CL do the same thing in ImageResource::didAddClient() to ensure |m_image| is non-null when ImageResource is reused after pruning. This is regression since ImageResourceClient was split into ResourceClient and ImageResourceObserver but the |m_image| re-creation logic was put only in the ImageResourceObserver path and not in the ResourceClient path: https://codereview.chromium.org/1706083002 https://codereview.chromium.org/1728313003 BUG=618597, 587663 ========== to ========== Ensure |m_image| is (re-)created in ImageResource::didAddClient() After ImageResource is pruned, |m_image| can be turned into null, but is not re-created when ResourceClient is added to ImageResource later. We re-create |m_image| when ImageResourceObserver is added in ImageResource::addObserver(). This CL do the same thing in ImageResource::didAddClient() to ensure |m_image| is non-null when ImageResource is reused after pruning. This is regression since ImageResourceClient was split into ResourceClient and ImageResourceObserver but the |m_image| re-creation logic was put only in the ImageResourceObserver path and not in the ResourceClient path: https://codereview.chromium.org/1706083002 https://codereview.chromium.org/1728313003 BUG=618597, 587663 ==========
Message was sent while issue was closed.
Committed patchset #2 (id:20001)
Message was sent while issue was closed.
Description was changed from ========== Ensure |m_image| is (re-)created in ImageResource::didAddClient() After ImageResource is pruned, |m_image| can be turned into null, but is not re-created when ResourceClient is added to ImageResource later. We re-create |m_image| when ImageResourceObserver is added in ImageResource::addObserver(). This CL do the same thing in ImageResource::didAddClient() to ensure |m_image| is non-null when ImageResource is reused after pruning. This is regression since ImageResourceClient was split into ResourceClient and ImageResourceObserver but the |m_image| re-creation logic was put only in the ImageResourceObserver path and not in the ResourceClient path: https://codereview.chromium.org/1706083002 https://codereview.chromium.org/1728313003 BUG=618597, 587663 ========== to ========== Ensure |m_image| is (re-)created in ImageResource::didAddClient() After ImageResource is pruned, |m_image| can be turned into null, but is not re-created when ResourceClient is added to ImageResource later. We re-create |m_image| when ImageResourceObserver is added in ImageResource::addObserver(). This CL do the same thing in ImageResource::didAddClient() to ensure |m_image| is non-null when ImageResource is reused after pruning. This is regression since ImageResourceClient was split into ResourceClient and ImageResourceObserver but the |m_image| re-creation logic was put only in the ImageResourceObserver path and not in the ResourceClient path: https://codereview.chromium.org/1706083002 https://codereview.chromium.org/1728313003 BUG=618597, 587663 Committed: https://crrev.com/d415aad374ad81906840afbf4c05f0594f1f581b Cr-Commit-Position: refs/heads/master@{#405024} ==========
Message was sent while issue was closed.
Patchset 2 (id:??) landed as https://crrev.com/d415aad374ad81906840afbf4c05f0594f1f581b Cr-Commit-Position: refs/heads/master@{#405024} |