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

Issue 15466003: Remove image decoder down sampling (Closed)

Created:
7 years, 7 months ago by Noel Gordon
Modified:
7 years, 7 months ago
Reviewers:
Peter Kasting, eseidel
CC:
blink-reviews, jamesr, eae+blinkwatch, Rik, Stephen Chennney, jeez, pdr., trchen
Visibility:
Public.

Description

Remove image decoder down sampling Remove IMAGE_DECODER_DOWN_SAMPLING feature: chrome has never used/needed this feature and it has no tests. TEST=Covered by existing image layout tests. BUG=None Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=150783

Patch Set 1 #

Total comments: 2

Patch Set 2 : Remove virtual setSize() from GIF decoder #

Unified diffs Side-by-side diffs Delta from patch set Stats (+30 lines, -253 lines) Patch
M Source/core/platform/graphics/Image.h View 1 1 chunk +0 lines, -4 lines 0 comments Download
M Source/core/platform/graphics/Image.cpp View 1 1 chunk +0 lines, -17 lines 0 comments Download
M Source/core/platform/graphics/ImageSource.h View 3 chunks +0 lines, -9 lines 0 comments Download
M Source/core/platform/graphics/ImageSource.cpp View 3 chunks +1 line, -11 lines 0 comments Download
M Source/core/platform/image-decoders/ImageDecoder.h View 6 chunks +2 lines, -30 lines 0 comments Download
M Source/core/platform/image-decoders/ImageDecoder.cpp View 1 2 chunks +0 lines, -87 lines 0 comments Download
M Source/core/platform/image-decoders/gif/GIFImageDecoder.h View 1 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/platform/image-decoders/gif/GIFImageDecoder.cpp View 1 6 chunks +10 lines, -26 lines 0 comments Download
M Source/core/platform/image-decoders/jpeg/JPEGImageDecoder.h View 2 chunks +0 lines, -10 lines 0 comments Download
M Source/core/platform/image-decoders/jpeg/JPEGImageDecoder.cpp View 4 chunks +9 lines, -29 lines 0 comments Download
M Source/core/platform/image-decoders/png/PNGImageDecoder.h View 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/platform/image-decoders/png/PNGImageDecoder.cpp View 5 chunks +4 lines, -24 lines 0 comments Download
M Source/core/platform/image-decoders/webp/WEBPImageDecoder.cpp View 2 chunks +4 lines, -4 lines 0 comments Download

Messages

Total messages: 16 (0 generated)
Noel Gordon
7 years, 7 months ago (2013-05-20 15:38:30 UTC) #1
eseidel
lgtm Seems reasonable. In the future world where the compositor does all the image painting ...
7 years, 7 months ago (2013-05-20 19:39:29 UTC) #2
Peter Kasting
LGTM. Given my comment below, perhaps we can make setSize() non-virtual? https://codereview.chromium.org/15466003/diff/1/Source/core/platform/image-decoders/gif/GIFImageDecoder.cpp File Source/core/platform/image-decoders/gif/GIFImageDecoder.cpp (right): ...
7 years, 7 months ago (2013-05-20 23:04:24 UTC) #3
Noel Gordon
On 2013/05/20 19:39:29, eseidel wrote: > lgtm > > Seems reasonable. In the future world ...
7 years, 7 months ago (2013-05-21 04:20:51 UTC) #4
Noel Gordon
https://codereview.chromium.org/15466003/diff/1/Source/core/platform/image-decoders/gif/GIFImageDecoder.cpp File Source/core/platform/image-decoders/gif/GIFImageDecoder.cpp (right): https://codereview.chromium.org/15466003/diff/1/Source/core/platform/image-decoders/gif/GIFImageDecoder.cpp#newcode70 Source/core/platform/image-decoders/gif/GIFImageDecoder.cpp:70: return ImageDecoder::setSize(width, height); On 2013/05/20 23:04:24, Peter Kasting wrote: ...
7 years, 7 months ago (2013-05-21 04:24:03 UTC) #5
Noel Gordon
Right, removed setSize() from GIF decoder. > Given my comment below, perhaps we can make ...
7 years, 7 months ago (2013-05-21 04:37:44 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/noel@chromium.org/15466003/8001
7 years, 7 months ago (2013-05-21 05:53:05 UTC) #7
Noel Gordon
On 2013/05/21 04:37:44, Noel Gordon (Google) wrote: > Did you mean make setSize() non-virtual in ...
7 years, 7 months ago (2013-05-21 05:53:46 UTC) #8
commit-bot: I haz the power
Retried try job too often on linux_layout_rel for step(s) webkit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_layout_rel&number=8935
7 years, 7 months ago (2013-05-21 06:36:52 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/noel@chromium.org/15466003/8001
7 years, 7 months ago (2013-05-21 08:12:38 UTC) #10
commit-bot: I haz the power
Retried try job too often on linux_layout_rel for step(s) webkit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_layout_rel&number=8996
7 years, 7 months ago (2013-05-21 09:48:49 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/noel@chromium.org/15466003/8001
7 years, 7 months ago (2013-05-21 12:37:28 UTC) #12
commit-bot: I haz the power
Change committed as 150783
7 years, 7 months ago (2013-05-21 12:52:57 UTC) #13
Peter Kasting
On 2013/05/21 05:53:46, Noel Gordon (Google) wrote: > On 2013/05/21 04:37:44, Noel Gordon (Google) wrote: ...
7 years, 7 months ago (2013-05-21 20:32:05 UTC) #14
danakj
On 2013/05/20 19:39:29, eseidel wrote: > lgtm > > Seems reasonable. In the future world ...
7 years, 7 months ago (2013-05-21 20:34:13 UTC) #15
Noel Gordon
7 years, 7 months ago (2013-05-22 04:33:11 UTC) #16
Message was sent while issue was closed.
On 2013/05/21 20:32:05, Peter Kasting wrote:

> Yes, I meant to make it non-virtual in ImageDecoder.h.

Right, https://codereview.chromium.org/15656002 sent.

Powered by Google App Engine
This is Rietveld 408576698