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

Unified Diff: Source/bindings/scripts/idl_types.py

Issue 644473006: Rename 'ScalarValueString' to 'USVString' to match Web IDL (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 | « Source/bindings/core/v8/V8BindingTest.cpp ('k') | Source/bindings/scripts/v8_interface.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/idl_types.py
diff --git a/Source/bindings/scripts/idl_types.py b/Source/bindings/scripts/idl_types.py
index d7c8b57d447b136d2bf3a64483b76f28bf65f675..0ea93cffc7772444a6f2875cfdd9343a9458f095 100644
--- a/Source/bindings/scripts/idl_types.py
+++ b/Source/bindings/scripts/idl_types.py
@@ -46,11 +46,10 @@ BASIC_TYPES = (PRIMITIVE_TYPES | frozenset([
# http://heycam.github.io/webidl/#idl-types
'DOMString',
'ByteString',
+ 'USVString',
'Date',
- # http://heycam.github.io/webidl/#es-type-mapping
+ # http://heycam.github.io/webidl/#idl-types
'void',
- # http://encoding.spec.whatwg.org/#type-scalarvaluestring
- 'ScalarValueString',
]))
TYPE_NAMES = {
# http://heycam.github.io/webidl/#dfn-type-name
@@ -70,7 +69,7 @@ TYPE_NAMES = {
'unrestricted double': 'UnrestrictedDouble',
'DOMString': 'String',
'ByteString': 'ByteString',
- 'ScalarValueString': 'ScalarValueString',
+ 'USVString': 'USVString',
'object': 'Object',
'Date': 'Date',
}
@@ -80,7 +79,7 @@ STRING_TYPES = frozenset([
# (Interface object [[Call]] method's string types.)
'String',
'ByteString',
- 'ScalarValueString',
+ 'USVString',
])
« no previous file with comments | « Source/bindings/core/v8/V8BindingTest.cpp ('k') | Source/bindings/scripts/v8_interface.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698