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

Issue 1706083002: Split ImageResourceClient into ResourceClient and ImageResourceObserver [1/2] (Closed)

Created:
4 years, 10 months ago by hiroshige
Modified:
4 years, 9 months ago
CC:
chromium-reviews, blink-reviews-html_chromium.org, eae+blinkwatch, fs, apavlov+blink_chromium.org, kouhei+svg_chromium.org, pdr+svgwatchlist_chromium.org, Yoav Weiss, krit, blink-reviews-css, szager+layoutwatch_chromium.org, dglazkov+blink, gavinp+loader_chromium.org, jchaffraix+rendering, blink-reviews, gyuyoung2, rwlbuis, blink-reviews-style_chromium.org, zoltan1, blink-reviews-layout_chromium.org, loading-reviews_chromium.org, darktears, loading-reviews+fetch_chromium.org, Nate Chapin, tyoshino+watch_chromium.org, pdr+renderingwatchlist_chromium.org, leviw+renderwatch, f(malita), Stephen Chennney
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Split ImageResourceClient into ResourceClient and ImageResourceObserver [1/2] We are planning to move ResourceClient to on-heap, but LayoutObject (an ImageResourceClient subclass) is hard to move to on-heap. This series of CLs splits ImageResourceClient into - ResourceClient (notified via Resource, to be moved to Oilpan heap) and - ImageResourceObserver (notified via ImageObserver, to remain non-heap) and makes LayoutObject to be ImageResourceObserver but not ResourceClient. This is the [1/2] CL that - Splits ImageResourceClient into ResourceClient and ImageResourceObserver, - Makes LayoutObject and all of its subclasses (except for LayoutImage and its subclasses) to be ImageResourceObserver but not ResourceClient. LayoutImage will be made non-ResourceClient by the [2/2] CL: https://codereview.chromium.org/1728313003/. Original CL: https://codereview.chromium.org/1697713002/ by Nate Chapin. In addition to Nate's original CL (Patch Set 1), this CL: - Fixes layout test (Patch Set 2). - Reuses ResourceClientWalker to iterate ImageResourceObserver (Patch Set 3). - Handles ResourceClient and ImageResourceObserver more similarly (Patch Set 4). - Renames methods to reflect whether they are for both ResourceClient and ImageResourceObserver (Patch Set 6). BUG=587663 Committed: https://crrev.com/a4581858f57e20724f9b8a3166ef9c864f79a758 Cr-Commit-Position: refs/heads/master@{#383425}

Patch Set 1 : Nate's Original CL #

Patch Set 2 : Fix layout tests #

Patch Set 3 : Use walker to iterate over ImageResourceObservers. #

Patch Set 4 : More consistent Client/Observer #

Total comments: 1

Patch Set 5 : Rebase (to yhirano's multipart cleanup) #

Patch Set 6 : Rename. #

Patch Set 7 : Rebase. #

Patch Set 8 : Rebase #

Patch Set 9 : nit refine. #

Total comments: 10

Patch Set 10 : Reflect comments and Rebase #

Total comments: 10

Patch Set 11 : Reflect yhirano's comments. #

Patch Set 12 : Rebase. #

Patch Set 13 : Rebase. #

Patch Set 14 : Rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+284 lines, -446 lines) Patch
M third_party/WebKit/Source/core/core.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/css/CSSCrossfadeValue.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/CSSStyleSheetResource.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/fetch/FontResource.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/fetch/FontResource.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/ImageResource.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +11 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/ImageResource.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 8 chunks +44 lines, -40 lines 0 comments Download
D third_party/WebKit/Source/core/fetch/ImageResourceClient.h View 1 2 3 4 1 chunk +0 lines, -57 lines 0 comments Download
A + third_party/WebKit/Source/core/fetch/ImageResourceObserver.h View 1 2 3 4 5 6 7 8 2 chunks +15 lines, -9 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/ImageResourceTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +3 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/MemoryCache.cpp View 1 2 3 4 5 6 7 8 9 10 11 7 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/MemoryCacheTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +5 lines, -5 lines 0 comments Download
D third_party/WebKit/Source/core/fetch/MockImageResourceClient.h View 1 chunk +0 lines, -67 lines 0 comments Download
D third_party/WebKit/Source/core/fetch/MockImageResourceClient.cpp View 1 chunk +0 lines, -38 lines 0 comments Download
A + third_party/WebKit/Source/core/fetch/MockResourceClients.h View 1 2 3 4 5 6 7 8 1 chunk +27 lines, -17 lines 0 comments Download
A + third_party/WebKit/Source/core/fetch/MockResourceClients.cpp View 1 2 3 4 5 6 7 8 1 chunk +29 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/RawResource.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/fetch/RawResourceTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +4 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/Resource.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +9 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/Resource.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 10 chunks +21 lines, -27 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/ResourceClient.h View 1 2 3 4 5 6 7 8 9 3 chunks +0 lines, -4 lines 0 comments Download
A + third_party/WebKit/Source/core/fetch/ResourceClientOrObserverWalker.h View 1 2 3 4 5 6 7 8 9 10 4 chunks +17 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/ResourceClientWalker.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +0 lines, -69 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/ScriptResource.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/fetch/XSLStyleSheetResource.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/frame/ImageBitmapTest.cpp View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutImage.h View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +3 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutImage.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutImageResource.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutImageResource.cpp View 1 2 3 4 5 6 7 8 9 3 chunks +16 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutObject.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutObject.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +3 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/loader/ImageLoader.h View 1 2 3 4 3 chunks +4 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/loader/ImageLoader.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +17 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/loader/LinkPreloadResourceClients.h View 3 chunks +2 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/style/StyleFetchedImage.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/style/StyleFetchedImage.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/style/StyleFetchedImageSet.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/style/StyleFetchedImageSet.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGFEImageElement.h View 2 chunks +2 lines, -2 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 76 (42 generated)
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/20001
4 years, 10 months ago (2016-02-18 01:50:23 UTC) #3
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/40001
4 years, 10 months ago (2016-02-18 01:57:40 UTC) #7
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/60001
4 years, 10 months ago (2016-02-18 02:03:42 UTC) #9
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 10 months ago (2016-02-18 03:13:21 UTC) #11
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/80001
4 years, 10 months ago (2016-02-18 18:39:54 UTC) #13
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/100001
4 years, 10 months ago (2016-02-18 19:22:32 UTC) #15
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/120001
4 years, 10 months ago (2016-02-18 19:40:15 UTC) #17
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 10 months ago (2016-02-18 21:10:32 UTC) #19
hiroshige
PTAL. https://codereview.chromium.org/1706083002/diff/120001/third_party/WebKit/Source/core/fetch/Resource.h File third_party/WebKit/Source/core/fetch/Resource.h (right): https://codereview.chromium.org/1706083002/diff/120001/third_party/WebKit/Source/core/fetch/Resource.h#newcode140 third_party/WebKit/Source/core/fetch/Resource.h:140: virtual bool hasClients() const { return !m_clients.isEmpty() || ...
4 years, 10 months ago (2016-02-20 02:00:19 UTC) #27
hiroshige
I'll make LayoutImage non-ResourceClient by removing LayoutImage::notifyFinished() before this CL, in order to make all ...
4 years, 10 months ago (2016-02-26 01:24:46 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/1706083002/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/160001
4 years, 9 months ago (2016-02-29 23:23:10 UTC) #31
commit-bot: I haz the power
Dry run: 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_ng/builds/187947)
4 years, 9 months ago (2016-03-01 00:18:12 UTC) #33
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/200001
4 years, 9 months ago (2016-03-01 02:06:18 UTC) #35
commit-bot: I haz the power
Dry run: 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_gn_chromeos_rel/builds/150780)
4 years, 9 months ago (2016-03-01 02:23:30 UTC) #37
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/220001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/220001
4 years, 9 months ago (2016-03-01 18:57:14 UTC) #39
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/240001
4 years, 9 months ago (2016-03-01 19:43:13 UTC) #43
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/189657)
4 years, 9 months ago (2016-03-01 21:08:03 UTC) #45
hiroshige
esprehn@: could you take a look at core/layout/ changes? japhet@, yhirano@: Created [2/2] https://codereview.chromium.org/1728313003/ to ...
4 years, 9 months ago (2016-03-01 22:38:42 UTC) #48
yhirano
https://codereview.chromium.org/1706083002/diff/240001/third_party/WebKit/Source/core/fetch/Resource.h File third_party/WebKit/Source/core/fetch/Resource.h (right): https://codereview.chromium.org/1706083002/diff/240001/third_party/WebKit/Source/core/fetch/Resource.h#newcode151 third_party/WebKit/Source/core/fetch/Resource.h:151: // |this| object may be dead after didRemoveClient(). didRemoveClientOrObserver ...
4 years, 9 months ago (2016-03-02 01:20:52 UTC) #49
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/280001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/280001
4 years, 9 months ago (2016-03-11 22:55:56 UTC) #52
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-12 00:34:07 UTC) #54
hiroshige
https://codereview.chromium.org/1706083002/diff/240001/third_party/WebKit/Source/core/fetch/Resource.h File third_party/WebKit/Source/core/fetch/Resource.h (right): https://codereview.chromium.org/1706083002/diff/240001/third_party/WebKit/Source/core/fetch/Resource.h#newcode151 third_party/WebKit/Source/core/fetch/Resource.h:151: // |this| object may be dead after didRemoveClient(). On ...
4 years, 9 months ago (2016-03-12 01:03:36 UTC) #55
yhirano
lgtm https://codereview.chromium.org/1706083002/diff/280001/third_party/WebKit/Source/core/fetch/ImageResource.cpp File third_party/WebKit/Source/core/fetch/ImageResource.cpp (right): https://codereview.chromium.org/1706083002/diff/280001/third_party/WebKit/Source/core/fetch/ImageResource.cpp#newcode44 third_party/WebKit/Source/core/fetch/ImageResource.cpp:44: namespace { Is this unnamed namespace necessary? My ...
4 years, 9 months ago (2016-03-17 04:44:57 UTC) #56
hiroshige
friendly ping; could you take a look?
4 years, 9 months ago (2016-03-22 16:45:48 UTC) #57
Nate Chapin
LGTM https://codereview.chromium.org/1706083002/diff/280001/third_party/WebKit/Source/core/fetch/ImageResourceObserver.h File third_party/WebKit/Source/core/fetch/ImageResourceObserver.h (right): https://codereview.chromium.org/1706083002/diff/280001/third_party/WebKit/Source/core/fetch/ImageResourceObserver.h#newcode58 third_party/WebKit/Source/core/fetch/ImageResourceObserver.h:58: static bool isExpectedType(ImageResourceObserver*) { return true; } Is ...
4 years, 9 months ago (2016-03-22 21:27:42 UTC) #58
hiroshige
(I'll address yhirano@'s comments soon) https://codereview.chromium.org/1706083002/diff/280001/third_party/WebKit/Source/core/fetch/ImageResourceObserver.h File third_party/WebKit/Source/core/fetch/ImageResourceObserver.h (right): https://codereview.chromium.org/1706083002/diff/280001/third_party/WebKit/Source/core/fetch/ImageResourceObserver.h#newcode58 third_party/WebKit/Source/core/fetch/ImageResourceObserver.h:58: static bool isExpectedType(ImageResourceObserver*) { ...
4 years, 9 months ago (2016-03-22 21:39:15 UTC) #59
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/340001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/340001
4 years, 9 months ago (2016-03-23 17:24:58 UTC) #62
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-23 18:37:42 UTC) #64
hiroshige
https://codereview.chromium.org/1706083002/diff/280001/third_party/WebKit/Source/core/fetch/ImageResource.cpp File third_party/WebKit/Source/core/fetch/ImageResource.cpp (right): https://codereview.chromium.org/1706083002/diff/280001/third_party/WebKit/Source/core/fetch/ImageResource.cpp#newcode44 third_party/WebKit/Source/core/fetch/ImageResource.cpp:44: namespace { On 2016/03/17 04:44:57, yhirano wrote: > Is ...
4 years, 9 months ago (2016-03-23 18:47:25 UTC) #65
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/380001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/380001
4 years, 9 months ago (2016-03-25 20:08:23 UTC) #67
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-25 22:35:45 UTC) #69
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1706083002/380001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1706083002/380001
4 years, 9 months ago (2016-03-26 00:43:40 UTC) #72
commit-bot: I haz the power
Committed patchset #14 (id:380001)
4 years, 9 months ago (2016-03-26 00:50:27 UTC) #74
commit-bot: I haz the power
4 years, 9 months ago (2016-03-26 00:52:11 UTC) #76
Message was sent while issue was closed.
Patchset 14 (id:??) landed as
https://crrev.com/a4581858f57e20724f9b8a3166ef9c864f79a758
Cr-Commit-Position: refs/heads/master@{#383425}

Powered by Google App Engine
This is Rietveld 408576698