Changeset 282199 in webkit
- Timestamp:
- Sep 9, 2021 12:37:01 AM (10 months ago)
- Location:
- trunk
- Files:
-
- 8 added
- 13 edited
-
LayoutTests/imported/w3c/ChangeLog (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/webrtc/RTCError-expected.txt (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/webrtc/idlharness.https.window-expected.txt (modified) (1 diff)
-
Source/WebCore/CMakeLists.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/DerivedSources-input.xcfilelist (modified) (1 diff)
-
Source/WebCore/DerivedSources-output.xcfilelist (modified) (1 diff)
-
Source/WebCore/DerivedSources.make (modified) (1 diff)
-
Source/WebCore/Modules/mediastream/RTCError.cpp (added)
-
Source/WebCore/Modules/mediastream/RTCError.h (added)
-
Source/WebCore/Modules/mediastream/RTCError.idl (added)
-
Source/WebCore/Modules/mediastream/RTCErrorDetailType.h (added)
-
Source/WebCore/Modules/mediastream/RTCErrorDetailType.idl (added)
-
Source/WebCore/Modules/mediastream/RTCErrorEvent.cpp (added)
-
Source/WebCore/Modules/mediastream/RTCErrorEvent.h (added)
-
Source/WebCore/Modules/mediastream/RTCErrorEvent.idl (added)
-
Source/WebCore/Sources.txt (modified) (2 diffs)
-
Source/WebCore/WebCore.xcodeproj/project.pbxproj (modified) (5 diffs)
-
Source/WebCore/bindings/js/WebCoreBuiltinNames.h (modified) (3 diffs)
-
Source/WebCore/dom/DOMException.h (modified) (1 diff)
-
Source/WebCore/dom/EventNames.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/imported/w3c/ChangeLog
r282198 r282199 1 2021-09-09 Youenn Fablet <youenn@apple.com> 2 3 Add support for RTCError and RTCErrorEvent 4 https://bugs.webkit.org/show_bug.cgi?id=229987 5 6 Reviewed by Eric Carlson. 7 8 * web-platform-tests/webrtc/RTCError-expected.txt: 9 * web-platform-tests/webrtc/idlharness.https.window-expected.txt: 10 1 11 2021-09-09 Youenn Fablet <youenn@apple.com> 2 12 -
trunk/LayoutTests/imported/w3c/web-platform-tests/webrtc/RTCError-expected.txt
r264202 r282199 1 1 2 FAIL RTCError constructor with errorDetail and message Can't find variable: RTCError 3 FAIL RTCError constructor's message argument is optional Can't find variable: RTCError 4 FAIL RTCError constructor throws TypeError if arguments are missing assert_throws_js: function "() => { 5 new RTCError(); 6 }" threw object "ReferenceError: Can't find variable: RTCError" ("ReferenceError") expected instance of function "function TypeError() { 7 [native code] 8 }" ("TypeError") 9 FAIL RTCError constructor throws TypeError if the errorDetail is invalid assert_throws_js: function "() => { 10 new RTCError({errorDetail:'invalid-error-detail'}, 'message'); 11 }" threw object "ReferenceError: Can't find variable: RTCError" ("ReferenceError") expected instance of function "function TypeError() { 12 [native code] 13 }" ("TypeError") 14 FAIL RTCError.name is 'OperationError' Can't find variable: RTCError 15 FAIL RTCError.code is 0 Can't find variable: RTCError 16 FAIL RTCError.errorDetail is readonly. Can't find variable: RTCError 17 FAIL RTCErrorInit.errorDetail is the only required attribute assert_throws_js: function "() => { 18 new RTCError({}, 'message'); 19 }" threw object "ReferenceError: Can't find variable: RTCError" ("ReferenceError") expected instance of function "function TypeError() { 20 [native code] 21 }" ("TypeError") 22 FAIL RTCError.sdpLineNumber is null by default Can't find variable: RTCError 23 FAIL RTCError.sdpLineNumber is settable by constructor Can't find variable: RTCError 24 FAIL RTCError.sdpLineNumber is readonly Can't find variable: RTCError 25 FAIL RTCError.httpRequestStatusCode is null by default Can't find variable: RTCError 26 FAIL RTCError.httpRequestStatusCode is settable by constructor Can't find variable: RTCError 27 FAIL RTCError.httpRequestStatusCode is readonly Can't find variable: RTCError 28 FAIL RTCError.sctpCauseCode is null by default Can't find variable: RTCError 29 FAIL RTCError.sctpCauseCode is settable by constructor Can't find variable: RTCError 30 FAIL RTCError.sctpCauseCode is readonly Can't find variable: RTCError 31 FAIL RTCError.receivedAlert is null by default Can't find variable: RTCError 32 FAIL RTCError.receivedAlert is settable by constructor Can't find variable: RTCError 33 FAIL RTCError.receivedAlert is readonly Can't find variable: RTCError 34 FAIL RTCError.sentAlert is null by default Can't find variable: RTCError 35 FAIL RTCError.sentAlert is settable by constructor Can't find variable: RTCError 36 FAIL RTCError.sentAlert is readonly Can't find variable: RTCError 2 PASS RTCError constructor with errorDetail and message 3 PASS RTCError constructor's message argument is optional 4 PASS RTCError constructor throws TypeError if arguments are missing 5 PASS RTCError constructor throws TypeError if the errorDetail is invalid 6 PASS RTCError.name is 'OperationError' 7 PASS RTCError.code is 0 8 PASS RTCError.errorDetail is readonly. 9 PASS RTCErrorInit.errorDetail is the only required attribute 10 PASS RTCError.sdpLineNumber is null by default 11 PASS RTCError.sdpLineNumber is settable by constructor 12 PASS RTCError.sdpLineNumber is readonly 13 FAIL RTCError.httpRequestStatusCode is null by default assert_equals: expected (object) null but got (undefined) undefined 14 FAIL RTCError.httpRequestStatusCode is settable by constructor assert_equals: expected (number) 0 but got (undefined) undefined 15 FAIL RTCError.httpRequestStatusCode is readonly assert_throws_js: function "() => { 16 error[attribute] = 42; 17 }" did not throw 18 PASS RTCError.sctpCauseCode is null by default 19 PASS RTCError.sctpCauseCode is settable by constructor 20 PASS RTCError.sctpCauseCode is readonly 21 PASS RTCError.receivedAlert is null by default 22 PASS RTCError.receivedAlert is settable by constructor 23 PASS RTCError.receivedAlert is readonly 24 PASS RTCError.sentAlert is null by default 25 PASS RTCError.sentAlert is settable by constructor 26 PASS RTCError.sentAlert is readonly 37 27 -
trunk/LayoutTests/imported/w3c/web-platform-tests/webrtc/idlharness.https.window-expected.txt
r282198 r282199 481 481 PASS RTCStatsReport interface: existence and properties of interface prototype object's "constructor" property 482 482 PASS RTCStatsReport interface: existence and properties of interface prototype object's @@unscopables property 483 FAIL RTCError interface: existence and properties of interface object assert_own_property: self does not have own property "RTCError" expected property "RTCError" missing 484 FAIL RTCError interface object length assert_own_property: self does not have own property "RTCError" expected property "RTCError" missing 485 FAIL RTCError interface object name assert_own_property: self does not have own property "RTCError" expected property "RTCError" missing 486 FAIL RTCError interface: existence and properties of interface prototype object assert_own_property: self does not have own property "RTCError" expected property "RTCError" missing 487 FAIL RTCError interface: existence and properties of interface prototype object's "constructor" property assert_own_property: self does not have own property "RTCError" expected property "RTCError" missing 488 FAIL RTCError interface: existence and properties of interface prototype object's @@unscopables property assert_own_property: self does not have own property "RTCError" expected property "RTCError" missing 489 FAIL RTCError interface: attribute errorDetail assert_own_property: self does not have own property "RTCError" expected property "RTCError" missing 490 FAIL RTCError interface: attribute sdpLineNumber assert_own_property: self does not have own property "RTCError" expected property "RTCError" missing 491 FAIL RTCError interface: attribute sctpCauseCode assert_own_property: self does not have own property "RTCError" expected property "RTCError" missing 492 FAIL RTCError interface: attribute receivedAlert assert_own_property: self does not have own property "RTCError" expected property "RTCError" missing 493 FAIL RTCError interface: attribute sentAlert assert_own_property: self does not have own property "RTCError" expected property "RTCError" missing 494 FAIL RTCErrorEvent interface: existence and properties of interface object assert_own_property: self does not have own property "RTCErrorEvent" expected property "RTCErrorEvent" missing 495 FAIL RTCErrorEvent interface object length assert_own_property: self does not have own property "RTCErrorEvent" expected property "RTCErrorEvent" missing 496 FAIL RTCErrorEvent interface object name assert_own_property: self does not have own property "RTCErrorEvent" expected property "RTCErrorEvent" missing 497 FAIL RTCErrorEvent interface: existence and properties of interface prototype object assert_own_property: self does not have own property "RTCErrorEvent" expected property "RTCErrorEvent" missing 498 FAIL RTCErrorEvent interface: existence and properties of interface prototype object's "constructor" property assert_own_property: self does not have own property "RTCErrorEvent" expected property "RTCErrorEvent" missing 499 FAIL RTCErrorEvent interface: existence and properties of interface prototype object's @@unscopables property assert_own_property: self does not have own property "RTCErrorEvent" expected property "RTCErrorEvent" missing 500 FAIL RTCErrorEvent interface: attribute error assert_own_property: self does not have own property "RTCErrorEvent" expected property "RTCErrorEvent" missing 501 FAIL RTCErrorEvent must be primary interface of new RTCErrorEvent('error') assert_equals: Unexpected exception when evaluating object expected null but got object " ReferenceError: Can't find variable: RTCErrorEvent"502 FAIL Stringification of new RTCErrorEvent('error') assert_equals: Unexpected exception when evaluating object expected null but got object " ReferenceError: Can't find variable: RTCErrorEvent"503 FAIL RTCErrorEvent interface: new RTCErrorEvent('error') must inherit property "error" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object " ReferenceError: Can't find variable: RTCErrorEvent"483 PASS RTCError interface: existence and properties of interface object 484 PASS RTCError interface object length 485 PASS RTCError interface object name 486 PASS RTCError interface: existence and properties of interface prototype object 487 PASS RTCError interface: existence and properties of interface prototype object's "constructor" property 488 PASS RTCError interface: existence and properties of interface prototype object's @@unscopables property 489 PASS RTCError interface: attribute errorDetail 490 PASS RTCError interface: attribute sdpLineNumber 491 PASS RTCError interface: attribute sctpCauseCode 492 PASS RTCError interface: attribute receivedAlert 493 PASS RTCError interface: attribute sentAlert 494 PASS RTCErrorEvent interface: existence and properties of interface object 495 PASS RTCErrorEvent interface object length 496 PASS RTCErrorEvent interface object name 497 PASS RTCErrorEvent interface: existence and properties of interface prototype object 498 PASS RTCErrorEvent interface: existence and properties of interface prototype object's "constructor" property 499 PASS RTCErrorEvent interface: existence and properties of interface prototype object's @@unscopables property 500 PASS RTCErrorEvent interface: attribute error 501 FAIL RTCErrorEvent must be primary interface of new RTCErrorEvent('error') assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Not enough arguments" 502 FAIL Stringification of new RTCErrorEvent('error') assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Not enough arguments" 503 FAIL RTCErrorEvent interface: new RTCErrorEvent('error') must inherit property "error" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Not enough arguments" 504 504 -
trunk/Source/WebCore/CMakeLists.txt
r282197 r282199 387 387 Modules/mediastream/RTCEncodedAudioFrame.idl 388 388 Modules/mediastream/RTCEncodedVideoFrame.idl 389 Modules/mediastream/RTCError.idl 390 Modules/mediastream/RTCErrorDetailType.idl 391 Modules/mediastream/RTCErrorEvent.idl 389 392 Modules/mediastream/RTCIceCandidate.idl 390 393 Modules/mediastream/RTCIceCandidateInit.idl -
trunk/Source/WebCore/ChangeLog
r282198 r282199 1 2021-09-09 Youenn Fablet <youenn@apple.com> 2 3 Add support for RTCError and RTCErrorEvent 4 https://bugs.webkit.org/show_bug.cgi?id=229987 5 6 Reviewed by Eric Carlson. 7 8 Add support for RTCError and RTCErrorEvent as per https://w3c.github.io/webrtc-pc/#rtcerror-interface 9 and https://w3c.github.io/webrtc-pc/#rtcerrorevent-interface. 10 11 Covered by updated tests. 12 13 * CMakeLists.txt: 14 * DerivedSources-input.xcfilelist: 15 * DerivedSources-output.xcfilelist: 16 * DerivedSources.make: 17 * Modules/mediastream/RTCError.cpp: Added. 18 (WebCore::RTCError::RTCError): 19 * Modules/mediastream/RTCError.h: Added. 20 * Modules/mediastream/RTCError.idl: Added. 21 * Modules/mediastream/RTCErrorDetailType.h: Added. 22 * Modules/mediastream/RTCErrorDetailType.idl: Added. 23 * Modules/mediastream/RTCErrorEvent.cpp: Added. 24 (WebCore::RTCErrorEvent::RTCErrorEvent): 25 * Modules/mediastream/RTCErrorEvent.h: Added. 26 * Modules/mediastream/RTCErrorEvent.idl: Added. 27 * Sources.txt: 28 * WebCore.xcodeproj/project.pbxproj: 29 * bindings/js/WebCoreBuiltinNames.h: 30 * dom/DOMException.h: 31 * dom/EventNames.in: 32 1 33 2021-09-09 Youenn Fablet <youenn@apple.com> 2 34 -
trunk/Source/WebCore/DerivedSources-input.xcfilelist
r282197 r282199 225 225 $(PROJECT_DIR)/Modules/mediastream/RTCEncodedAudioFrame.idl 226 226 $(PROJECT_DIR)/Modules/mediastream/RTCEncodedVideoFrame.idl 227 $(PROJECT_DIR)/Modules/mediastream/RTCError.idl 228 $(PROJECT_DIR)/Modules/mediastream/RTCErrorDetailType.idl 229 $(PROJECT_DIR)/Modules/mediastream/RTCErrorEvent.idl 227 230 $(PROJECT_DIR)/Modules/mediastream/RTCIceCandidate.idl 228 231 $(PROJECT_DIR)/Modules/mediastream/RTCIceCandidateInit.idl -
trunk/Source/WebCore/DerivedSources-output.xcfilelist
r282197 r282199 1670 1670 $(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSRTCEncodedVideoFrame.cpp 1671 1671 $(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSRTCEncodedVideoFrame.h 1672 $(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSRTCError.cpp 1673 $(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSRTCError.h 1674 $(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSRTCErrorDetailType.cpp 1675 $(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSRTCErrorDetailType.h 1676 $(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSRTCErrorEvent.cpp 1677 $(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSRTCErrorEvent.h 1672 1678 $(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSRTCIceCandidate.cpp 1673 1679 $(BUILT_PRODUCTS_DIR)/DerivedSources/WebCore/JSRTCIceCandidate.h -
trunk/Source/WebCore/DerivedSources.make
r282197 r282199 251 251 $(WebCore)/Modules/mediastream/RTCEncodedAudioFrame.idl \ 252 252 $(WebCore)/Modules/mediastream/RTCEncodedVideoFrame.idl \ 253 $(WebCore)/Modules/mediastream/RTCError.idl \ 254 $(WebCore)/Modules/mediastream/RTCErrorDetailType.idl \ 255 $(WebCore)/Modules/mediastream/RTCErrorEvent.idl \ 253 256 $(WebCore)/Modules/mediastream/RTCIceCandidate.idl \ 254 257 $(WebCore)/Modules/mediastream/RTCIceCandidateInit.idl \ -
trunk/Source/WebCore/Sources.txt
r282197 r282199 166 166 Modules/mediastream/RTCEncodedFrame.cpp 167 167 Modules/mediastream/RTCEncodedVideoFrame.cpp 168 Modules/mediastream/RTCError.cpp 169 Modules/mediastream/RTCErrorEvent.cpp 168 170 Modules/mediastream/RTCIceCandidate.cpp 169 171 Modules/mediastream/RTCIceTransport.cpp … … 3321 3323 JSRTCEncodedAudioFrame.cpp 3322 3324 JSRTCEncodedVideoFrame.cpp 3325 JSRTCError.cpp 3326 JSRTCErrorDetailType.cpp 3327 JSRTCErrorEvent.cpp 3323 3328 JSRTCIceCandidate.cpp 3324 3329 JSRTCIceCandidateInit.cpp -
trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj
r282197 r282199 1167 1167 41A3D58F101C152D00316D07 /* DedicatedWorkerThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 41A3D58D101C152D00316D07 /* DedicatedWorkerThread.h */; }; 1168 1168 41A7D3531F438D16008988DE /* WorkerCacheStorageConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 41A7D3501F438D10008988DE /* WorkerCacheStorageConnection.h */; }; 1169 41AB979526E75A2E007C0FE6 /* RTCErrorDetailType.h in Headers */ = {isa = PBXBuildFile; fileRef = 41AB979226E75A2D007C0FE6 /* RTCErrorDetailType.h */; }; 1169 1170 41ABE67B1D0580DB006D862D /* CrossOriginPreflightChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 41ABE67A1D0580D5006D862D /* CrossOriginPreflightChecker.h */; }; 1170 1171 41AD753A1CEF6BD100A31486 /* FetchOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 41AD75391CEF6BCE00A31486 /* FetchOptions.h */; settings = {ATTRIBUTES = (Private, ); }; }; … … 8038 8039 41A7D34F1F438D10008988DE /* WorkerCacheStorageConnection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WorkerCacheStorageConnection.cpp; sourceTree = "<group>"; }; 8039 8040 41A7D3501F438D10008988DE /* WorkerCacheStorageConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WorkerCacheStorageConnection.h; sourceTree = "<group>"; }; 8041 41AB979226E75A2D007C0FE6 /* RTCErrorDetailType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTCErrorDetailType.h; sourceTree = "<group>"; }; 8042 41AB979426E75A2D007C0FE6 /* RTCErrorDetailType.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RTCErrorDetailType.idl; sourceTree = "<group>"; }; 8040 8043 41ABE6791D0580D5006D862D /* CrossOriginPreflightChecker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CrossOriginPreflightChecker.cpp; sourceTree = "<group>"; }; 8041 8044 41ABE67A1D0580D5006D862D /* CrossOriginPreflightChecker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CrossOriginPreflightChecker.h; sourceTree = "<group>"; }; … … 8058 8061 41B6AA5126B995F800AADFA7 /* RTCRtpSFrameTransformErrorEvent.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RTCRtpSFrameTransformErrorEvent.idl; sourceTree = "<group>"; }; 8059 8062 41B6AA5226B995F900AADFA7 /* RTCRtpSFrameTransformErrorEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RTCRtpSFrameTransformErrorEvent.cpp; sourceTree = "<group>"; }; 8063 41B7C04526E690BC00D36C07 /* RTCErrorEvent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = RTCErrorEvent.cpp; sourceTree = "<group>"; }; 8064 41B7C04726E690BD00D36C07 /* RTCErrorEvent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RTCErrorEvent.h; sourceTree = "<group>"; }; 8065 41B7C04826E690BE00D36C07 /* RTCErrorEvent.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = RTCErrorEvent.idl; sourceTree = "<group>"; }; 8066 41B7C04926E6916F00D36C07 /* RTCError.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = RTCError.idl; sourceTree = "<group>"; }; 8067 41B7C04A26E6917000D36C07 /* RTCError.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = RTCError.cpp; sourceTree = "<group>"; }; 8068 41B7C04B26E6917100D36C07 /* RTCError.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RTCError.h; sourceTree = "<group>"; }; 8060 8069 41B8776023DE1042003638B8 /* RealtimeMediaSourceIdentifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RealtimeMediaSourceIdentifier.h; sourceTree = "<group>"; }; 8061 8070 41B9137623584D0E0025BFA3 /* MockAudioDestinationCocoa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MockAudioDestinationCocoa.h; sourceTree = "<group>"; }; … … 17266 17275 414189FD2564176600363417 /* RTCEncodedVideoFrame.h */, 17267 17276 414189FA2564165100363417 /* RTCEncodedVideoFrame.idl */, 17277 41B7C04A26E6917000D36C07 /* RTCError.cpp */, 17278 41B7C04B26E6917100D36C07 /* RTCError.h */, 17279 41B7C04926E6916F00D36C07 /* RTCError.idl */, 17280 41AB979226E75A2D007C0FE6 /* RTCErrorDetailType.h */, 17281 41AB979426E75A2D007C0FE6 /* RTCErrorDetailType.idl */, 17282 41B7C04526E690BC00D36C07 /* RTCErrorEvent.cpp */, 17283 41B7C04726E690BD00D36C07 /* RTCErrorEvent.h */, 17284 41B7C04826E690BE00D36C07 /* RTCErrorEvent.idl */, 17268 17285 07221B7117CEC32700848E51 /* RTCIceCandidate.cpp */, 17269 17286 07221B7217CEC32700848E51 /* RTCIceCandidate.h */, … … 34523 34540 078E092017D14D1C00420AA1 /* RTCDTMFSender.h in Headers */, 34524 34541 078E092117D14D1C00420AA1 /* RTCDTMFToneChangeEvent.h in Headers */, 34542 41AB979526E75A2E007C0FE6 /* RTCErrorDetailType.h in Headers */, 34525 34543 078E092317D14D1C00420AA1 /* RTCIceCandidate.h in Headers */, 34526 34544 078E094017D16E1C00420AA1 /* RTCIceCandidateDescriptor.h in Headers */, -
trunk/Source/WebCore/bindings/js/WebCoreBuiltinNames.h
r282197 r282199 172 172 macro(PerformanceNavigationTiming) \ 173 173 macro(PictureInPictureWindow) \ 174 macro(SQLError) \175 macro(SQLResultSet) \176 macro(SQLResultSetRowList) \177 macro(SQLTransaction) \178 174 macro(PaintWorkletGlobalScope) \ 179 175 macro(PerformanceEntry) \ … … 201 197 macro(RTCEncodedAudioFrame) \ 202 198 macro(RTCEncodedVideoFrame) \ 199 macro(RTCError) \ 200 macro(RTCErrorEvent) \ 203 201 macro(RTCIceCandidate) \ 204 202 macro(RTCIceTransport) \ … … 229 227 macro(SFrameTransform) \ 230 228 macro(SFrameTransformErrorEvent) \ 229 macro(SQLError) \ 230 macro(SQLResultSet) \ 231 macro(SQLResultSetRowList) \ 232 macro(SQLTransaction) \ 231 233 macro(ScreenLuminance) \ 232 234 macro(ServiceWorker) \ -
trunk/Source/WebCore/dom/DOMException.h
r233122 r282199 61 61 static ASCIILiteral message(ExceptionCode ec) { return description(ec).message; } 62 62 63 pr ivate:63 protected: 64 64 DOMException(LegacyCode, const String& name, const String& message); 65 65 66 private: 66 67 LegacyCode m_legacyCode; 67 68 String m_name; -
trunk/Source/WebCore/dom/EventNames.in
r280958 r282199 61 61 PaymentMethodChangeEvent conditional=PAYMENT_REQUEST 62 62 PaymentRequestUpdateEvent conditional=PAYMENT_REQUEST 63 RTCErrorEvent conditional=WEB_RTC 63 64 RTCPeerConnectionIceErrorEvent conditional=WEB_RTC 64 65 RTCPeerConnectionIceEvent conditional=WEB_RTC
Note: See TracChangeset
for help on using the changeset viewer.