|
Replace many [TreatReturnedNullStringAs=Null] with nullable DOMString
In IDL files, the attribute declarations
[TreatReturnedNullStringAs=Null] readonly attribute DOMString X;
[TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute DOMString X;
can now be changed into
readonly attribute DOMString? X;
attribute DOMString? X;
without changing behavior or generated code, so do that.
Similarly for methods, the declaration
[TreatReturnedNullStringAs=Null] DOMString f();
can be changed into
DOMString? f();
without changing behavior or generated code, so do that too.
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=177302
Total comments: 1
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+65 lines, -65 lines) |
Patch |
|
M |
Source/core/css/CSSImportRule.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Source/core/css/CSSStyleDeclaration.idl
|
View
|
|
1 chunk |
+7 lines, -7 lines |
0 comments
|
Download
|
|
M |
Source/core/css/CSSValue.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Source/core/css/MediaList.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Source/core/css/StyleSheet.idl
|
View
|
|
1 chunk |
+3 lines, -3 lines |
0 comments
|
Download
|
|
M |
Source/core/dom/Attr.idl
|
View
|
|
2 chunks |
+7 lines, -7 lines |
0 comments
|
Download
|
|
M |
Source/core/dom/CharacterData.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Source/core/dom/Document.idl
|
View
|
|
2 chunks |
+7 lines, -7 lines |
0 comments
|
Download
|
|
M |
Source/core/dom/Element.idl
|
View
|
|
3 chunks |
+6 lines, -6 lines |
0 comments
|
Download
|
|
M |
Source/core/dom/MutationRecord.idl
|
View
|
|
1 chunk |
+3 lines, -3 lines |
0 comments
|
Download
|
|
M |
Source/core/dom/Node.idl
|
View
|
|
2 chunks |
+6 lines, -6 lines |
0 comments
|
Download
|
|
M |
Source/core/dom/ProcessingInstruction.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Source/core/dom/URL.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Source/core/frame/Window.idl
|
View
|
|
1 chunk |
+2 lines, -2 lines |
1 comment
|
Download
|
|
M |
Source/core/html/canvas/WebGLDebugShaders.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Source/core/html/canvas/WebGLRenderingContextBase.idl
|
View
|
|
1 chunk |
+3 lines, -3 lines |
0 comments
|
Download
|
|
M |
Source/core/storage/Storage.idl
|
View
|
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
|
M |
Source/core/testing/TypeConversions.idl
|
View
|
|
2 chunks |
+2 lines, -2 lines |
0 comments
|
Download
|
|
M |
Source/core/xml/XMLHttpRequest.idl
|
View
|
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
|
M |
Source/core/xml/XPathNSResolver.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Source/modules/donottrack/NavigatorDoNotTrack.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Source/modules/indexeddb/IDBObjectStore.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Source/modules/mediasource/URLMediaSource.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Source/modules/mediastream/RTCSessionDescription.idl
|
View
|
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
|
M |
Source/modules/mediastream/URLMediaStream.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Source/modules/serviceworkers/Headers.idl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
Total messages: 8 (0 generated)
|