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

Unified Diff: tools/dom/scripts/htmlrenamer.py

Issue 1831033002: Fix WebGL tex[Sub]Image2D/buffer[Sub]Data, restored Typed/Untyped aliases (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/dom/docs/docs.json ('k') | tools/dom/templates/html/impl/impl_WebGLRenderingContext.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/scripts/htmlrenamer.py
diff --git a/tools/dom/scripts/htmlrenamer.py b/tools/dom/scripts/htmlrenamer.py
index 7bb618a95c1149d36689328ad3b4c7dd30de58eb..271291679c3b5332d3d93448b9af4e8488e24e4b 100644
--- a/tools/dom/scripts/htmlrenamer.py
+++ b/tools/dom/scripts/htmlrenamer.py
@@ -454,38 +454,6 @@ renamed_overloads = monitored.Dict('htmldartgenerator.renamed_overloads', {
'_createObjectUrlFromWebKitSource',
'URL.createObjectURL(MediaStream stream)': 'createObjectUrlFromStream',
'URL.createObjectURL(Blob blob)': 'createObjectUrlFromBlob',
- 'WebGLRenderingContextBase.texImage2D(unsigned long target, long level, '
- 'unsigned long internalformat, unsigned long format, unsigned long '
- 'type, ImageData pixels)': 'texImage2DImageData',
- 'WebGLRenderingContextBase.texImage2D(unsigned long target, long level, '
- 'unsigned long internalformat, unsigned long format, unsigned long '
- 'type, HTMLImageElement image)': 'texImage2DImage',
- 'WebGLRenderingContextBase.texImage2D(unsigned long target, long level, '
- 'unsigned long internalformat, unsigned long format, unsigned long '
- 'type, HTMLCanvasElement canvas)': 'texImage2DCanvas',
- 'WebGLRenderingContextBase.texImage2D(unsigned long target, long level, '
- 'unsigned long internalformat, unsigned long format, unsigned long '
- 'type, HTMLVideoElement video)': 'texImage2DVideo',
- 'WebGLRenderingContextBase.texSubImage2D(unsigned long target, long level, '
- 'long xoffset, long yoffset, unsigned long format, unsigned long type, '
- 'ImageData pixels)': 'texSubImage2DImageData',
- 'WebGLRenderingContextBase.texSubImage2D(unsigned long target, long level, '
- 'long xoffset, long yoffset, unsigned long format, unsigned long type, '
- 'HTMLImageElement image)': 'texSubImage2DImage',
- 'WebGLRenderingContextBase.texSubImage2D(unsigned long target, long level, '
- 'long xoffset, long yoffset, unsigned long format, unsigned long type, '
- 'HTMLCanvasElement canvas)': 'texSubImage2DCanvas',
- 'WebGLRenderingContextBase.texSubImage2D(unsigned long target, long level, '
- 'long xoffset, long yoffset, unsigned long format, unsigned long type, '
- 'HTMLVideoElement video)': 'texSubImage2DVideo',
- 'WebGLRenderingContextBase.bufferData(unsigned long target, '
- 'ArrayBuffer data, unsigned long usage)': 'bufferByteData',
- 'WebGLRenderingContextBase.bufferData(unsigned long target, '
- 'ArrayBufferView data, unsigned long usage)': 'bufferDataTyped',
- 'WebGLRenderingContextBase.bufferSubData(unsigned long target, '
- 'long long offset, ArrayBuffer data)': 'bufferSubByteData',
- 'WebGLRenderingContextBase.bufferSubData(unsigned long target, '
- 'long long offset, ArrayBufferView data)': 'bufferSubDataTyped',
'WebSocket.send(ArrayBuffer data)': 'sendByteBuffer',
'WebSocket.send(ArrayBufferView data)': 'sendTypedData',
'WebSocket.send(DOMString data)': 'sendString',
@@ -525,10 +493,6 @@ overloaded_and_renamed = monitored.Set(
'CanvasRenderingContext2D.isPointInStroke',
'CanvasRenderingContext2D.stroke',
'Navigator.sendBeacon',
- 'WebGLRenderingContextBase.bufferData',
- 'WebGLRenderingContextBase.bufferSubData',
- 'WebGLRenderingContextBase.texImage2D',
- 'WebGLRenderingContextBase.texSubImage2D',
])
for member in convert_to_future_members:
« no previous file with comments | « tools/dom/docs/docs.json ('k') | tools/dom/templates/html/impl/impl_WebGLRenderingContext.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698