Changeset 148480 in webkit
- Timestamp:
- Apr 15, 2013, 5:30:26 PM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 21 edited
-
ChangeLog (modified) (1 diff)
-
Modules/encryptedmedia/MediaKeyMessageEvent.idl (modified) (1 diff)
-
Modules/encryptedmedia/MediaKeyNeededEvent.idl (modified) (1 diff)
-
Modules/encryptedmedia/MediaKeySession.idl (modified) (1 diff)
-
Modules/encryptedmedia/MediaKeys.idl (modified) (1 diff)
-
Modules/filesystem/HTMLInputElementFileSystem.idl (modified) (1 diff)
-
Modules/indexeddb/IDBAny.idl (modified) (1 diff)
-
Modules/mediasource/MediaSource.idl (modified) (1 diff)
-
Modules/mediasource/SourceBuffer.idl (modified) (1 diff)
-
Modules/mediasource/SourceBufferList.idl (modified) (1 diff)
-
html/track/TextTrackCue.idl (modified) (1 diff)
-
html/track/TextTrackCueList.idl (modified) (1 diff)
-
html/track/TextTrackList.idl (modified) (1 diff)
-
html/track/TextTrackRegion.idl (modified) (1 diff)
-
html/track/TextTrackRegionList.idl (modified) (1 diff)
-
html/track/TrackEvent.idl (modified) (1 diff)
-
storage/Storage.idl (modified) (1 diff)
-
svg/SVGDocument.idl (modified) (1 diff)
-
svg/SVGElement.idl (modified) (1 diff)
-
workers/WorkerContext.idl (modified) (1 diff)
-
xml/XMLHttpRequest.idl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r148479 r148480 1 2013-04-12 Maciej Stachowiak <mjs@apple.com> 2 3 Remove V8-specific extended attributes from IDL files 4 https://bugs.webkit.org/show_bug.cgi?id=114523 5 6 Reviewed by Geoffrey Garen. 7 8 No tests because no behavior change is expected. 9 10 * Modules/encryptedmedia/MediaKeyMessageEvent.idl: 11 * Modules/encryptedmedia/MediaKeyNeededEvent.idl: 12 * Modules/encryptedmedia/MediaKeySession.idl: 13 * Modules/encryptedmedia/MediaKeys.idl: 14 * Modules/filesystem/HTMLInputElementFileSystem.idl: 15 * Modules/indexeddb/IDBAny.idl: 16 * Modules/mediasource/MediaSource.idl: 17 * Modules/mediasource/SourceBuffer.idl: 18 * Modules/mediasource/SourceBufferList.idl: 19 * Modules/mediastream/MediaStream.idl: 20 * Modules/webaudio/AudioDestinationNode.idl: 21 * html/track/TextTrackCue.idl: 22 * html/track/TextTrackCueList.idl: 23 * html/track/TextTrackList.idl: 24 * html/track/TextTrackRegion.idl: 25 * html/track/TextTrackRegionList.idl: 26 * html/track/TrackEvent.idl: 27 * storage/Storage.idl: 28 * svg/SVGDocument.idl: 29 * svg/SVGElement.idl: 30 * workers/WorkerContext.idl: 31 * xml/XMLHttpRequest.idl: 32 * xml/XPathNSResolver.idl: 33 1 34 2013-04-15 Anders Carlsson <andersca@apple.com> 2 35 -
trunk/Source/WebCore/Modules/encryptedmedia/MediaKeyMessageEvent.idl
r142327 r148480 26 26 interface [ 27 27 Conditional=ENCRYPTED_MEDIA_V2, 28 V8EnabledAtRuntime=encryptedMedia,29 28 ConstructorTemplate=Event 30 29 ] MediaKeyMessageEvent : Event { -
trunk/Source/WebCore/Modules/encryptedmedia/MediaKeyNeededEvent.idl
r142327 r148480 26 26 interface [ 27 27 Conditional=ENCRYPTED_MEDIA_V2, 28 V8EnabledAtRuntime=encryptedMedia,29 28 ConstructorTemplate=Event 30 29 ] MediaKeyNeededEvent : Event { -
trunk/Source/WebCore/Modules/encryptedmedia/MediaKeySession.idl
r147857 r148480 26 26 interface [ 27 27 Conditional=ENCRYPTED_MEDIA_V2, 28 V8EnabledAtRuntime=encryptedMedia,29 28 EventTarget, 30 29 ] MediaKeySession { -
trunk/Source/WebCore/Modules/encryptedmedia/MediaKeys.idl
r142327 r148480 26 26 interface [ 27 27 Conditional=ENCRYPTED_MEDIA_V2, 28 V8EnabledAtRuntime=encryptedMedia,29 28 Constructor(in DOMString keySystem), 30 29 ConstructorRaisesException, -
trunk/Source/WebCore/Modules/filesystem/HTMLInputElementFileSystem.idl
r131172 r148480 33 33 Supplemental=HTMLInputElement 34 34 ] interface HTMLInputElementFileSystem { 35 [ V8EnabledAtRuntime=FileSystem,CallWith=ScriptExecutionContext] readonly attribute EntryArray webkitEntries;35 [CallWith=ScriptExecutionContext] readonly attribute EntryArray webkitEntries; 36 36 }; 37 37 -
trunk/Source/WebCore/Modules/indexeddb/IDBAny.idl
r134674 r148480 27 27 Conditional=INDEXED_DATABASE, 28 28 CustomToJSObject, 29 V8NoWrapperCache,30 29 JSNoStaticTables 31 30 ] interface IDBAny { -
trunk/Source/WebCore/Modules/mediasource/MediaSource.idl
r146360 r148480 31 31 [ 32 32 Conditional=MEDIA_SOURCE, 33 V8EnabledAtRuntime=mediaSource,34 33 ActiveDOMObject, 35 34 EventTarget, -
trunk/Source/WebCore/Modules/mediasource/SourceBuffer.idl
r131172 r148480 30 30 31 31 [ 32 Conditional=MEDIA_SOURCE, 33 V8EnabledAtRuntime=mediaSource 32 Conditional=MEDIA_SOURCE 34 33 ] interface SourceBuffer { 35 34 -
trunk/Source/WebCore/Modules/mediasource/SourceBufferList.idl
r131172 r148480 31 31 [ 32 32 Conditional=MEDIA_SOURCE, 33 V8EnabledAtRuntime=mediaSource,34 33 IndexedGetter, 35 34 EventTarget, -
trunk/Source/WebCore/html/track/TextTrackCue.idl
r148303 r148480 26 26 [ 27 27 Conditional=VIDEO_TRACK, 28 V8EnabledAtRuntime=webkitVideoTrack,29 28 JSGenerateToNativeObject, 30 29 Constructor(in double startTime, in double endTime, in DOMString text), -
trunk/Source/WebCore/html/track/TextTrackCueList.idl
r141034 r148480 26 26 [ 27 27 Conditional=VIDEO_TRACK, 28 V8EnabledAtRuntime=webkitVideoTrack,29 28 IndexedGetter, 30 29 ImplementationLacksVTable -
trunk/Source/WebCore/html/track/TextTrackList.idl
r148244 r148480 26 26 [ 27 27 Conditional=VIDEO_TRACK, 28 V8EnabledAtRuntime=webkitVideoTrack,29 28 IndexedGetter, 30 29 EventTarget, -
trunk/Source/WebCore/html/track/TextTrackRegion.idl
r145053 r148480 26 26 [ 27 27 Conditional=VIDEO_TRACK & WEBVTT_REGIONS, 28 V8EnabledAtRuntime=webkitVideoTrack,29 28 JSGenerateToNativeObject, 30 29 Constructor() -
trunk/Source/WebCore/html/track/TextTrackRegionList.idl
r146825 r148480 26 26 [ 27 27 Conditional=VIDEO_TRACK & WEBVTT_REGIONS, 28 V8EnabledAtRuntime=webkitVideoTrack,29 28 IndexedGetter, 30 29 ImplementationLacksVTable -
trunk/Source/WebCore/html/track/TrackEvent.idl
r131172 r148480 26 26 [ 27 27 Conditional=VIDEO_TRACK, 28 V8EnabledAtRuntime=webkitVideoTrack,29 28 ConstructorTemplate=Event 30 29 ] interface TrackEvent : Event { -
trunk/Source/WebCore/storage/Storage.idl
r148257 r148480 29 29 CustomDeleteProperty, 30 30 CustomEnumerateProperty, 31 V8CustomIndexedGetter,32 31 CustomNamedSetter, 33 32 SkipVTableValidation -
trunk/Source/WebCore/svg/SVGDocument.idl
r131172 r148480 21 21 22 22 [ 23 Conditional=SVG, 24 V8CustomToJSObject 23 Conditional=SVG 25 24 ] interface SVGDocument : Document { 26 25 readonly attribute SVGSVGElement rootElement; -
trunk/Source/WebCore/svg/SVGElement.idl
r131172 r148480 23 23 [ 24 24 JSGenerateToNativeObject, 25 Conditional=SVG, 26 V8CustomToJSObject 25 Conditional=SVG 27 26 ] interface SVGElement : Element { 28 27 [Reflect] attribute DOMString id; -
trunk/Source/WebCore/workers/WorkerContext.idl
r148100 r148480 35 35 JSNoStaticTables, 36 36 OmitConstructor, 37 V8CustomToJSObject,38 V8NoWrapperCache39 37 ] interface WorkerContext { 40 38 -
trunk/Source/WebCore/xml/XMLHttpRequest.idl
r147172 r148480 41 41 Constructor, 42 42 CallWith=ScriptExecutionContext, 43 V8CustomConstructor,44 43 JSCustomMarkFunction, 45 44 EventTarget,
Note:
See TracChangeset
for help on using the changeset viewer.