Chromium Code Reviews

Issue 340763003: Change [ConstructorCallWith={Document => ExecutionContext}] (Closed)

Created:
6 years, 6 months ago by Jens Widell
Modified:
6 years, 6 months ago
Reviewers:
haraken, tkent
CC:
blink-reviews, philipj_slow, arv+blink, feature-media-reviews_chromium.org, gasubic, sof, eae+blinkwatch, fs, eric.carlson_apple.com, abarth-chromium, blink-reviews-dom_chromium.org, dglazkov+blink, blink-reviews-html_chromium.org, blink-reviews-bindings_chromium.org, Inactive, nessy, Raymond Toy, watchdog-blink-watchlist_google.com, vcarbune.chromium, rwlbuis
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Project:
blink
Visibility:
Public.

Description

Change [ConstructorCallWith={Document => ExecutionContext}] Drop support for [ConstructorCallWith=Document] from the IDL code generator. [ConstructorCallWith=ExecutionContext] provides equivalent functionality; the implementation can simply extract the document from the execution context using toDocument(executionContext) instead if it needs to. BUG=

Patch Set 1 #

Total comments: 8

Patch Set 2 : #

Total comments: 5
Unified diffs Side-by-side diffs Stats (+76 lines, -76 lines)
M Source/bindings/IDLExtendedAttributes.txt View 1 chunk +1 line, -3 lines 0 comments
M Source/bindings/scripts/v8_interface.py View 1 chunk +0 lines, -2 lines 0 comments
M Source/bindings/scripts/v8_utilities.py View 2 chunks +0 lines, -2 lines 0 comments
M Source/bindings/templates/methods.cpp View 2 chunks +3 lines, -5 lines 0 comments
M Source/bindings/tests/idls/TestInterfaceConstructor.idl View 1 chunk +1 line, -1 line 0 comments
M Source/bindings/tests/idls/TestInterfaceEventTarget.idl View 1 chunk +1 line, -1 line 0 comments
M Source/bindings/tests/idls/TestInterfaceNamedConstructor.idl View 1 chunk +1 line, -1 line 0 comments
M Source/bindings/tests/results/V8TestInterfaceConstructor.cpp View 2 chunks +2 lines, -4 lines 0 comments
M Source/bindings/tests/results/V8TestInterfaceEventTarget.cpp View 1 chunk +4 lines, -3 lines 0 comments
M Source/bindings/tests/results/V8TestInterfaceNamedConstructor.cpp View 3 chunks +5 lines, -4 lines 0 comments
M Source/bindings/tests/results/V8TestInterfaceNamedConstructor2.cpp View 1 chunk +3 lines, -2 lines 0 comments
M Source/bindings/tests/results/V8TestInterfaceWillBeGarbageCollected.cpp View 1 chunk +3 lines, -2 lines 0 comments
M Source/core/dom/Comment.h View 1 chunk +1 line, -1 line 0 comments
M Source/core/dom/Comment.cpp View 1 chunk +2 lines, -2 lines 0 comments
M Source/core/dom/Comment.idl View 1 chunk +1 line, -1 line 0 comments
M Source/core/dom/Document.h View 1 chunk +2 lines, -0 lines 4 comments
M Source/core/dom/DocumentFragment.h View 1 chunk +1 line, -1 line 0 comments
M Source/core/dom/DocumentFragment.cpp View 1 chunk +2 lines, -2 lines 0 comments
M Source/core/dom/DocumentFragment.idl View 1 chunk +1 line, -1 line 0 comments
M Source/core/dom/Range.h View 1 chunk +3 lines, -3 lines 1 comment
M Source/core/dom/Range.cpp View 2 chunks +6 lines, -6 lines 0 comments
M Source/core/dom/Range.idl View 1 chunk +1 line, -1 line 0 comments
M Source/core/dom/Text.h View 1 chunk +2 lines, -2 lines 0 comments
M Source/core/dom/Text.cpp View 1 chunk +4 lines, -4 lines 0 comments
M Source/core/dom/Text.idl View 1 chunk +1 line, -1 line 0 comments
M Source/core/html/HTMLAudioElement.h View 1 chunk +1 line, -1 line 0 comments
M Source/core/html/HTMLAudioElement.cpp View 1 chunk +2 lines, -2 lines 0 comments
M Source/core/html/HTMLAudioElement.idl View 1 chunk +1 line, -1 line 0 comments
M Source/core/html/HTMLImageElement.h View 1 chunk +1 line, -1 line 0 comments
M Source/core/html/HTMLImageElement.cpp View 1 chunk +2 lines, -2 lines 0 comments
M Source/core/html/HTMLImageElement.idl View 1 chunk +1 line, -1 line 0 comments
M Source/core/html/HTMLOptionElement.h View 1 chunk +1 line, -1 line 0 comments
M Source/core/html/HTMLOptionElement.cpp View 1 chunk +2 lines, -1 line 0 comments
M Source/core/html/HTMLOptionElement.idl View 1 chunk +1 line, -1 line 0 comments
M Source/core/html/track/InbandTextTrack.cpp View 1 chunk +1 line, -0 lines 0 comments
M Source/core/html/track/vtt/VTTCue.h View 1 chunk +1 line, -4 lines 0 comments
M Source/core/html/track/vtt/VTTCue.cpp View 1 chunk +5 lines, -0 lines 0 comments
M Source/core/html/track/vtt/VTTCue.idl View 1 chunk +1 line, -1 line 0 comments
M Source/modules/webaudio/AudioContext.h View 1 chunk +1 line, -1 line 0 comments
M Source/modules/webaudio/AudioContext.cpp View 2 chunks +2 lines, -2 lines 0 comments
M Source/modules/webaudio/AudioContext.idl View 1 chunk +2 lines, -2 lines 0 comments

Messages

Total messages: 25 (0 generated)
Jens Widell
Dropping [ConstructorCallWith=Document], as discussed in https://codereview.chromium.org/340443004/. https://codereview.chromium.org/340763003/diff/1/Source/bindings/templates/methods.cpp File Source/bindings/templates/methods.cpp (right): https://codereview.chromium.org/340763003/diff/1/Source/bindings/templates/methods.cpp#newcode547 Source/bindings/templates/methods.cpp:547: toV8(documentPtr, info.Holder(), isolate); ...
6 years, 6 months ago (2014-06-18 10:39:08 UTC) #1
haraken
https://codereview.chromium.org/340763003/diff/1/Source/bindings/templates/methods.cpp File Source/bindings/templates/methods.cpp (right): https://codereview.chromium.org/340763003/diff/1/Source/bindings/templates/methods.cpp#newcode547 Source/bindings/templates/methods.cpp:547: toV8(documentPtr, info.Holder(), isolate); On 2014/06/18 10:39:08, Jens Lindström wrote: ...
6 years, 6 months ago (2014-06-18 10:49:21 UTC) #2
Jens Widell
https://codereview.chromium.org/340763003/diff/1/Source/core/dom/Comment.h File Source/core/dom/Comment.h (right): https://codereview.chromium.org/340763003/diff/1/Source/core/dom/Comment.h#newcode34 Source/core/dom/Comment.h:34: static PassRefPtrWillBeRawPtr<Comment> create(Document&, const String&); On 2014/06/18 10:49:21, haraken ...
6 years, 6 months ago (2014-06-18 11:00:03 UTC) #3
Jens Widell
https://codereview.chromium.org/340763003/diff/1/Source/bindings/templates/methods.cpp File Source/bindings/templates/methods.cpp (right): https://codereview.chromium.org/340763003/diff/1/Source/bindings/templates/methods.cpp#newcode547 Source/bindings/templates/methods.cpp:547: toV8(documentPtr, info.Holder(), isolate); On 2014/06/18 10:49:21, haraken wrote: > ...
6 years, 6 months ago (2014-06-18 11:14:39 UTC) #4
haraken
https://codereview.chromium.org/340763003/diff/1/Source/core/dom/Comment.h File Source/core/dom/Comment.h (right): https://codereview.chromium.org/340763003/diff/1/Source/core/dom/Comment.h#newcode34 Source/core/dom/Comment.h:34: static PassRefPtrWillBeRawPtr<Comment> create(Document&, const String&); On 2014/06/18 11:00:02, Jens ...
6 years, 6 months ago (2014-06-18 11:16:35 UTC) #5
haraken
https://codereview.chromium.org/340763003/diff/1/Source/bindings/templates/methods.cpp File Source/bindings/templates/methods.cpp (right): https://codereview.chromium.org/340763003/diff/1/Source/bindings/templates/methods.cpp#newcode547 Source/bindings/templates/methods.cpp:547: toV8(documentPtr, info.Holder(), isolate); On 2014/06/18 11:14:38, Jens Lindström wrote: ...
6 years, 6 months ago (2014-06-18 11:24:52 UTC) #6
Jens Widell
https://codereview.chromium.org/340763003/diff/1/Source/bindings/templates/methods.cpp File Source/bindings/templates/methods.cpp (right): https://codereview.chromium.org/340763003/diff/1/Source/bindings/templates/methods.cpp#newcode547 Source/bindings/templates/methods.cpp:547: toV8(documentPtr, info.Holder(), isolate); On 2014/06/18 11:24:52, haraken wrote: > ...
6 years, 6 months ago (2014-06-18 11:29:03 UTC) #7
haraken
On 2014/06/18 11:29:03, Jens Lindström wrote: > https://codereview.chromium.org/340763003/diff/1/Source/bindings/templates/methods.cpp > File Source/bindings/templates/methods.cpp (right): > > https://codereview.chromium.org/340763003/diff/1/Source/bindings/templates/methods.cpp#newcode547 ...
6 years, 6 months ago (2014-06-18 11:34:14 UTC) #8
haraken
hmm, it seems you're right. - I don't see why we need the toV8() from ...
6 years, 6 months ago (2014-06-18 11:52:33 UTC) #9
Jens Widell
On 2014/06/18 11:52:33, haraken wrote: > hmm, it seems you're right. > > - I ...
6 years, 6 months ago (2014-06-18 12:11:51 UTC) #10
Jens Widell
On 2014/06/18 11:16:35, haraken wrote: > hmm, I cannot come up with any case where ...
6 years, 6 months ago (2014-06-18 12:13:21 UTC) #11
haraken
On 2014/06/18 12:11:51, Jens Lindström wrote: > On 2014/06/18 11:52:33, haraken wrote: > > hmm, ...
6 years, 6 months ago (2014-06-18 12:17:15 UTC) #12
haraken
On 2014/06/18 12:17:15, haraken wrote: > On 2014/06/18 12:11:51, Jens Lindström wrote: > > On ...
6 years, 6 months ago (2014-06-18 12:37:34 UTC) #13
Jens Widell
On 2014/06/18 12:37:34, haraken wrote: <lots of interesting information> > - Therefore, I think we ...
6 years, 6 months ago (2014-06-18 12:41:39 UTC) #14
haraken
On 2014/06/18 12:41:39, Jens Lindström wrote: > On 2014/06/18 12:37:34, haraken wrote: > > <lots ...
6 years, 6 months ago (2014-06-18 12:45:51 UTC) #15
Jens Widell
Patch updated to replace create(Document&, ...) with create(ExecutionContext*, ...) in all cases, instead of overloading. ...
6 years, 6 months ago (2014-06-18 12:53:29 UTC) #16
haraken
https://codereview.chromium.org/340763003/diff/20001/Source/core/dom/Document.h File Source/core/dom/Document.h (right): https://codereview.chromium.org/340763003/diff/20001/Source/core/dom/Document.h#newcode248 Source/core/dom/Document.h:248: operator ExecutionContext*() { return this; } On 2014/06/18 12:53:29, ...
6 years, 6 months ago (2014-06-18 13:15:01 UTC) #17
Jens Widell
https://codereview.chromium.org/340763003/diff/20001/Source/core/dom/Document.h File Source/core/dom/Document.h (right): https://codereview.chromium.org/340763003/diff/20001/Source/core/dom/Document.h#newcode248 Source/core/dom/Document.h:248: operator ExecutionContext*() { return this; } On 2014/06/18 13:15:01, ...
6 years, 6 months ago (2014-06-18 14:19:43 UTC) #18
haraken
On 2014/06/18 14:19:43, Jens Lindström wrote: > https://codereview.chromium.org/340763003/diff/20001/Source/core/dom/Document.h > File Source/core/dom/Document.h (right): > > https://codereview.chromium.org/340763003/diff/20001/Source/core/dom/Document.h#newcode248 ...
6 years, 6 months ago (2014-06-18 15:41:42 UTC) #19
tkent
https://codereview.chromium.org/340763003/diff/20001/Source/core/dom/Document.h File Source/core/dom/Document.h (right): https://codereview.chromium.org/340763003/diff/20001/Source/core/dom/Document.h#newcode248 Source/core/dom/Document.h:248: operator ExecutionContext*() { return this; } On 2014/06/18 14:19:43, ...
6 years, 6 months ago (2014-06-18 23:44:24 UTC) #20
haraken
On 2014/06/18 23:44:24, tkent wrote: > https://codereview.chromium.org/340763003/diff/20001/Source/core/dom/Document.h > File Source/core/dom/Document.h (right): > > https://codereview.chromium.org/340763003/diff/20001/Source/core/dom/Document.h#newcode248 > ...
6 years, 6 months ago (2014-06-19 05:53:44 UTC) #21
tkent
On 2014/06/19 05:53:44, haraken wrote: > Thanks tkent-san, then the patch set 1 would make ...
6 years, 6 months ago (2014-06-19 06:25:09 UTC) #22
Jens Widell
On 2014/06/19 06:25:09, tkent wrote: > On 2014/06/19 05:53:44, haraken wrote: > > Thanks tkent-san, ...
6 years, 6 months ago (2014-06-20 07:55:58 UTC) #23
haraken
On 2014/06/20 07:55:58, Jens Lindström wrote: > On 2014/06/19 06:25:09, tkent wrote: > > On ...
6 years, 6 months ago (2014-06-20 13:13:06 UTC) #24
Jens Widell
6 years, 6 months ago (2014-06-20 13:15:50 UTC) #25
On 2014/06/20 13:13:06, haraken wrote:
> The redundant toV8() will be worth dropping though.

Yes, I will upload a CL doing that.

Powered by Google App Engine