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

Issue 720113003: bindings: Makes SVGAnimatedProperty ScriptWrappable. (Closed)

Created:
6 years, 1 month ago by Yuki
Modified:
6 years, 1 month ago
CC:
blink-reviews, f(malita), shans, arv+blink, Inactive, Mike Lawther (Google), blink-reviews-animation_chromium.org, rwlbuis, fs, kouhei+svg_chromium.org, dstockwell, Timothy Loh, krit, blink-reviews-bindings_chromium.org, gyuyoung.kim_webkit.org, darktears, rjwright, Stephen Chennney, Steve Block, pdr+svgwatchlist_chromium.org, ed+blinkwatch_opera.com, Eric Willigers
Project:
blink
Visibility:
Public.

Description

bindings: Makes SVGAnimatedProperty ScriptWrappable. Makes SVGAnimatedProperty and its subclasses inherit from ScriptWrappable. This change increases the size of SVGAnimatedProperty and its subclasses by 8 bytes (on 64-bit env). BUG=235436 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=185346

Patch Set 1 #

Total comments: 19

Patch Set 2 : Addressed review comments. #

Patch Set 3 : Synced. #

Patch Set 4 : Addressed review comments. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+69 lines, -16 lines) Patch
M Source/bindings/core/v8/ScriptWrappable.h View 1 chunk +19 lines, -0 lines 0 comments Download
M Source/core/svg/SVGAnimatedAngle.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/svg/SVGAnimatedAngle.idl View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedBoolean.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/svg/SVGAnimatedBoolean.idl View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedEnumeration.idl View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedEnumerationBase.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/svg/SVGAnimatedInteger.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/svg/SVGAnimatedInteger.idl View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedLength.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/svg/SVGAnimatedLength.idl View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedLengthList.h View 1 2 3 1 chunk +13 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedLengthList.idl View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedNumber.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/svg/SVGAnimatedNumber.idl View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedNumberList.h View 1 2 3 1 chunk +13 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedNumberList.idl View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedPreserveAspectRatio.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/svg/SVGAnimatedPreserveAspectRatio.idl View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedRect.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/svg/SVGAnimatedRect.idl View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedString.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/svg/SVGAnimatedString.idl View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedTransformList.h View 1 2 3 1 chunk +13 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimatedTransformList.idl View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/svg/properties/SVGAnimatedProperty.h View 1 2 1 chunk +2 lines, -1 line 0 comments Download

Messages

Total messages: 21 (6 generated)
Yuki
Could you guys review this CL?
6 years, 1 month ago (2014-11-13 06:19:02 UTC) #2
haraken
shiino-san: Would you evaluate memory impact of this CL again (using the SVG benchmarks you ...
6 years, 1 month ago (2014-11-13 07:46:38 UTC) #4
Yuki
Will do an evaluation of memory usage with this change. https://codereview.chromium.org/720113003/diff/1/Source/bindings/core/v8/ScriptWrappable.h File Source/bindings/core/v8/ScriptWrappable.h (right): https://codereview.chromium.org/720113003/diff/1/Source/bindings/core/v8/ScriptWrappable.h#newcode268 ...
6 years, 1 month ago (2014-11-13 08:16:39 UTC) #5
kouhei (in TOK)
lgtm as long as no regression on svg perf.
6 years, 1 month ago (2014-11-13 08:20:30 UTC) #6
Yuki
https://codereview.chromium.org/720113003/diff/1/Source/core/svg/SVGAnimatedLengthList.h File Source/core/svg/SVGAnimatedLengthList.h (right): https://codereview.chromium.org/720113003/diff/1/Source/core/svg/SVGAnimatedLengthList.h#newcode43 Source/core/svg/SVGAnimatedLengthList.h:43: static PassRefPtr<SVGAnimatedLengthList> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGLengthList> initialValue) ...
6 years, 1 month ago (2014-11-13 08:30:00 UTC) #7
Yuki
In terms of speed performance, I see no regression running "tools/perf/run_benchmark blink_perf.svg". In terms of ...
6 years, 1 month ago (2014-11-13 09:39:14 UTC) #8
Yuki
6 years, 1 month ago (2014-11-13 10:03:04 UTC) #10
pdr.
This is my first time reading about how ScriptWrappable works and reading the docs around ...
6 years, 1 month ago (2014-11-14 01:45:04 UTC) #11
pdr.
On 2014/11/14 at 01:45:04, pdr wrote: > This is my first time reading about how ...
6 years, 1 month ago (2014-11-14 01:50:31 UTC) #12
Yuki
On 2014/11/14 01:50:31, pdr wrote: > On 2014/11/14 at 01:45:04, pdr wrote: > > This ...
6 years, 1 month ago (2014-11-14 04:17:09 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/720113003/60001
6 years, 1 month ago (2014-11-14 04:17:56 UTC) #15
commit-bot: I haz the power
Try jobs failed on following builders: blink_presubmit on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/blink_presubmit/builds/19757)
6 years, 1 month ago (2014-11-14 04:22:10 UTC) #17
haraken
LGTM
6 years, 1 month ago (2014-11-14 04:23:29 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/720113003/60001
6 years, 1 month ago (2014-11-14 04:24:21 UTC) #20
commit-bot: I haz the power
6 years, 1 month ago (2014-11-14 04:27:11 UTC) #21
Message was sent while issue was closed.
Committed patchset #4 (id:60001) as 185346

Powered by Google App Engine
This is Rietveld 408576698