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

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

Issue 444743002: Use Blink IDL parser for dart libraries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merged Created 6 years, 3 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/scripts/htmldartgenerator.py ('k') | tools/dom/scripts/idlnode.py » ('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 c066b372a5ba1c842bb23a43486295415aa46db3..7933e0834fd9f3d2b443d78e03f482ffa7145ef9 100644
--- a/tools/dom/scripts/htmlrenamer.py
+++ b/tools/dom/scripts/htmlrenamer.py
@@ -396,7 +396,7 @@ renamed_html_members = monitored.Dict('htmlrenamer.renamed_html_members', {
# Members that have multiple definitions, but their types are vary, so we rename
# them to make them distinct.
-renamed_overloads = monitored.Dict('htmldartgenreator.renamed_overloads', {
+renamed_overloads = monitored.Dict('htmldartgenerator.renamed_overloads', {
'AudioContext.createBuffer(ArrayBuffer buffer, boolean mixToMono)':
'createBufferFromBuffer',
'CSS.supports(DOMString conditionText)': 'supportsCondition',
@@ -480,12 +480,20 @@ keep_overloaded_members = monitored.Set(
'XMLHttpRequest.send'
])
+# Members that can be overloaded.
overloaded_and_renamed = monitored.Set(
'htmldartgenerator.overloaded_and_renamed', [
- 'WebGLRenderingContext.texImage2D',
- 'WebGLRenderingContext.texSubImage2D',
- 'WebGLRenderingContext.bufferData',
- 'WebGLRenderingContext.bufferSubData',
+ 'CanvasRenderingContext2D.clip',
+ 'CanvasRenderingContext2D.drawFocusIfNeeded',
+ 'CanvasRenderingContext2D.fill',
+ 'CanvasRenderingContext2D.isPointInPath',
+ '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/scripts/htmldartgenerator.py ('k') | tools/dom/scripts/idlnode.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698