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

Unified Diff: lib/dom/idl/dart/dart.idl

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
« no previous file with comments | « lib/dom/frog/dom_frog.dart ('k') | lib/dom/scripts/generator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/idl/dart/dart.idl
diff --git a/lib/dom/idl/dart/dart.idl b/lib/dom/idl/dart/dart.idl
index 4a62baf717c7f03ac4e5836f3917e4af99f1d4e0..ffe7272db121a8fe50a3df81209c2e0f6541022d 100644
--- a/lib/dom/idl/dart/dart.idl
+++ b/lib/dom/idl/dart/dart.idl
@@ -15,6 +15,12 @@ module default {
Int16Array implements sequence<int>;
Int32Array implements sequence<int>;
Uint8Array implements sequence<int>;
+ // Ugliness ahead: we cannot analyse inheritance right now when deducing if
podivilov 2012/05/05 14:44:45 Could you please add a more thorough fixme with re
Anton Muhin 2012/05/05 14:52:28 Done.
+ // given interface is a typed array (database is not accessible), so I have
+ // to duplicate both sequence<int> and ArrayBufferView to make our heuristics
+ // work.
+ Uint8ClampedArray implements sequence<int>;
+ Uint8ClampedArray implements ArrayBufferView;
Uint16Array implements sequence<int>;
Uint32Array implements sequence<int>;
« no previous file with comments | « lib/dom/frog/dom_frog.dart ('k') | lib/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698