| Index: tools/dom/scripts/htmlrenamer.py
|
| diff --git a/tools/dom/scripts/htmlrenamer.py b/tools/dom/scripts/htmlrenamer.py
|
| index 22bd880817fdbc946154d0bee147fab967f83da6..37ddc455f81b7a8f38bd656c18b675033eb95df1 100644
|
| --- a/tools/dom/scripts/htmlrenamer.py
|
| +++ b/tools/dom/scripts/htmlrenamer.py
|
| @@ -16,6 +16,8 @@ html_interface_renames = {
|
| 'HTMLDocument' : 'HtmlDocument',
|
| 'IDBAny': '_Any', # Suppressed, but needs to exist for Dartium.
|
| 'IDBFactory': 'IdbFactory', # Manual to avoid name conflicts.
|
| + 'NavigatorUserMediaErrorCallback': '_NavigatorUserMediaErrorCallback',
|
| + 'NavigatorUserMediaSuccessCallback': '_NavigatorUserMediaSuccessCallback',
|
| 'SVGDocument': 'SvgDocument', # Manual to avoid name conflicts.
|
| 'SVGElement': 'SvgElement', # Manual to avoid name conflicts.
|
| 'SVGException': 'SvgException', # Manual of avoid conflict with Exception.
|
| @@ -143,6 +145,7 @@ _renamed_html_members = {
|
| 'Element.scrollIntoViewIfNeeded': 'scrollIntoView',
|
| 'Element.webkitCreateShadowRoot': 'createShadowRoot',
|
| 'Element.webkitMatchesSelector' : 'matches',
|
| + 'Navigator.webkitGetUserMedia': '_getUserMedia',
|
| 'Node.cloneNode': 'clone',
|
| 'Node.nextSibling': 'nextNode',
|
| 'Node.ownerDocument': 'document',
|
|
|