| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
| 5 import logging | 5 import logging |
| 6 import monitored | 6 import monitored |
| 7 import re | 7 import re |
| 8 | 8 |
| 9 typed_array_renames = { | 9 typed_array_renames = { |
| 10 'ArrayBuffer': 'ByteBuffer', | 10 'ArrayBuffer': 'ByteBuffer', |
| (...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 'SVGStyledElement.getPresentationAttribute', | 710 'SVGStyledElement.getPresentationAttribute', |
| 711 'WheelEvent.wheelDelta', | 711 'WheelEvent.wheelDelta', |
| 712 'WorkerContext.webkitIndexedDB', | 712 'WorkerContext.webkitIndexedDB', |
| 713 # TODO(jacobr): should these be removed? | 713 # TODO(jacobr): should these be removed? |
| 714 'Document.close', | 714 'Document.close', |
| 715 'Document.hasFocus', | 715 'Document.hasFocus', |
| 716 ]) | 716 ]) |
| 717 | 717 |
| 718 # Manual dart: library name lookup. | 718 # Manual dart: library name lookup. |
| 719 _library_names = monitored.Dict('htmlrenamer._library_names', { | 719 _library_names = monitored.Dict('htmlrenamer._library_names', { |
| 720 'Window': 'html', | 720 'ANGLEInstancedArrays': 'web_gl', |
| 721 'Database': 'web_sql', | 721 'Database': 'web_sql', |
| 722 'Navigator': 'html', | 722 'Navigator': 'html', |
| 723 'Window': 'html', |
| 723 'WorkerContext': 'html', | 724 'WorkerContext': 'html', |
| 724 }) | 725 }) |
| 725 | 726 |
| 726 class HtmlRenamer(object): | 727 class HtmlRenamer(object): |
| 727 def __init__(self, database): | 728 def __init__(self, database): |
| 728 self._database = database | 729 self._database = database |
| 729 | 730 |
| 730 def RenameInterface(self, interface): | 731 def RenameInterface(self, interface): |
| 731 if 'Callback' in interface.ext_attrs: | 732 if 'Callback' in interface.ext_attrs: |
| 732 if interface.id in _removed_html_interfaces: | 733 if interface.id in _removed_html_interfaces: |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 860 | 861 |
| 861 # We're looking for a sequence of letters which start with capital letter | 862 # We're looking for a sequence of letters which start with capital letter |
| 862 # then a series of caps and finishes with either the end of the string or | 863 # then a series of caps and finishes with either the end of the string or |
| 863 # a capital letter. | 864 # a capital letter. |
| 864 # The [0-9] check is for names such as 2D or 3D | 865 # The [0-9] check is for names such as 2D or 3D |
| 865 # The following test cases should match as: | 866 # The following test cases should match as: |
| 866 # WebKitCSSFilterValue: WebKit(C)(SS)(F)ilterValue | 867 # WebKitCSSFilterValue: WebKit(C)(SS)(F)ilterValue |
| 867 # XPathNSResolver: (X)()(P)ath(N)(S)(R)esolver (no change) | 868 # XPathNSResolver: (X)()(P)ath(N)(S)(R)esolver (no change) |
| 868 # IFrameElement: (I)()(F)rameElement (no change) | 869 # IFrameElement: (I)()(F)rameElement (no change) |
| 869 return re.sub(r'([A-Z])([A-Z]{2,})([A-Z]|$)', toLower, name) | 870 return re.sub(r'([A-Z])([A-Z]{2,})([A-Z]|$)', toLower, name) |
| OLD | NEW |