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

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

Issue 321043003: Native method name mismatch cleanups for Dartium 36 roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: PTAL Created 6 years, 6 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
« tools/dom/idl/dart/dart.idl ('K') | « tools/dom/idl/dart/dart.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/scripts/systemnative.py
diff --git a/tools/dom/scripts/systemnative.py b/tools/dom/scripts/systemnative.py
index 88a2655b195deac300c20c55f9c63b9348131a33..a513aa77317f332d50176e139c0e1a0a2c3bb4df 100644
--- a/tools/dom/scripts/systemnative.py
+++ b/tools/dom/scripts/systemnative.py
@@ -33,7 +33,22 @@ _cpp_resolver_string_map = {
# We don't know how to get GLenum to show up as the correct type in this
# script and don't want to bother fixing it the right way.
'WebGLDrawBuffers_drawBuffersWEBGL_Callback_RESOLVER_STRING_1_sequence<GLenum>' :
- 'WebGLDrawBuffers_drawBuffersWEBGL_Callback_RESOLVER_STRING_1_sequence<unsigned long>'
+ 'WebGLDrawBuffers_drawBuffersWEBGL_Callback_RESOLVER_STRING_1_sequence<unsigned long>',
+ # Blink 36 fixes.
+ 'CanvasRenderingContext2D_setLineDash_Callback_RESOLVER_STRING_1_sequence<float>' :
+ 'CanvasRenderingContext2D_setLineDash_Callback_RESOLVER_STRING_1_sequence<unrestricted float>',
+
+ # SVGGraphicsElement is base class.
+ 'SVGUseElement_hasExtension_Callback_RESOLVER_STRING_1_DOMString' :
+ 'SVGGraphicsElement_hasExtension_Callback_RESOLVER_STRING_1_DOMString',
+ 'SVGUseElement_systemLanguage_Getter' :
+ 'SVGGraphicsElement_systemLanguage_Getter',
+ 'SVGUseElement_requiredFeatures_Getter' :
+ 'SVGGraphicsElement_requiredFeatures_Getter',
+ 'SVGUseElement_requiredExtensions_Getter' :
+ 'SVGGraphicsElement_requiredExtensions_Getter',
+
+ 'Gamepad_buttons_Getter' : 'WebKitGamepad_buttons_Getter',
}
# TODO(vsm): This logic needs to pulled from the source IDL. These tables are
« tools/dom/idl/dart/dart.idl ('K') | « tools/dom/idl/dart/dart.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698