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

Unified Diff: lib/dom/scripts/generator.py

Issue 10379024: Proper support for Uint8ClampedArray. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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
Index: lib/dom/scripts/generator.py
diff --git a/lib/dom/scripts/generator.py b/lib/dom/scripts/generator.py
index 653f3f289f2ec24204688cc98c60eb80745f80a5..8d72a6c024459201352f46a8d717b078d2417b26 100644
--- a/lib/dom/scripts/generator.py
+++ b/lib/dom/scripts/generator.py
@@ -110,8 +110,6 @@ def MaybeTypedArrayElementType(interface):
for parent in interface.parents:
if parent.type.id == 'ArrayBufferView':
return MaybeListElementType(interface)
- if parent.type.id == 'Uint8Array':
- return 'int'
return None
def MakeNativeSpec(javascript_binding_name):

Powered by Google App Engine
This is Rietveld 408576698