| Index: tools/dom/scripts/htmlrenamer.py
|
| diff --git a/tools/dom/scripts/htmlrenamer.py b/tools/dom/scripts/htmlrenamer.py
|
| index 6834f8e0f250e69ae53696510d4f1da2662950c9..83a19875efcdb9a096890998b46e3a61423e025a 100644
|
| --- a/tools/dom/scripts/htmlrenamer.py
|
| +++ b/tools/dom/scripts/htmlrenamer.py
|
| @@ -28,7 +28,6 @@ html_interface_renames = monitored.Dict('htmlrenamer.html_interface_renames',
|
| 'Clipboard': 'DataTransfer',
|
| 'Database': 'SqlDatabase', # Avoid conflict with Index DB's Database.
|
| 'DatabaseSync': 'SqlDatabaseSync',
|
| - 'DOMApplicationCache': 'ApplicationCache',
|
| 'DOMFileSystem': 'FileSystem',
|
| 'WebKitPoint': '_DomPoint',
|
| 'Entity': '_Entity', # Not sure if we want to expose this yet, may conflict with other libs.
|
| @@ -318,8 +317,8 @@ private_html_members = monitored.Set('htmlrenamer.private_html_members', [
|
| 'UIEvent.pageY',
|
| 'WebGLRenderingContext.texImage2D',
|
| 'WheelEvent.initWebKitWheelEvent',
|
| - 'WheelEvent.wheelDeltaX',
|
| - 'WheelEvent.wheelDeltaY',
|
| + 'WheelEvent.deltaX',
|
| + 'WheelEvent.deltaY',
|
| 'Window.createImageBitmap',
|
| 'Window.getComputedStyle',
|
| 'Window.moveTo',
|
| @@ -395,6 +394,8 @@ renamed_overloads = monitored.Dict('htmldartgenreator.renamed_overloads', {
|
| 'ImageBitmapFactories.createImageBitmap(ImageData data, long sx, long sy, long sw, long sh)' : 'createImageBitmap9',
|
| 'ImageBitmapFactories.createImageBitmap(ImageBitmap bitmap)' : 'createImageBitmap10',
|
| 'ImageBitmapFactories.createImageBitmap(ImageBitmap bitmap, long sx, long sy, long sw, long sh)' : 'createImageBitmap11',
|
| + 'ImageBitmapFactories.createImageBitmap(Blob blob)' : 'createImageBitmap12',
|
| + 'ImageBitmapFactories.createImageBitmap(Blob blob, long sx, long sy, long sw, long sh)' : 'createImageBitmap13',
|
| 'RTCDataChannel.send(ArrayBuffer data)': 'sendByteBuffer',
|
| 'RTCDataChannel.send(ArrayBufferView data)': 'sendTypedData',
|
| 'RTCDataChannel.send(Blob data)': 'sendBlob',
|
|
|