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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 14985010: Map lists back to typed arrays (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index e71bfd1f6ed56cf0441d28e9ab6e55c0fa0ce767..0066e92ca2f302ba0a6ee8236b4bacfe28c93369 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -12827,9 +12827,7 @@ class MediaKeyEvent extends Event native "MediaKeyEvent" {
@DomName('MediaKeyEvent.initData')
@DocsEditable
- @Returns('Uint8List')
- @Creates('Uint8List')
- final List<int> initData;
+ final Uint8List initData;
@DomName('MediaKeyEvent.keySystem')
@DocsEditable
@@ -12837,9 +12835,7 @@ class MediaKeyEvent extends Event native "MediaKeyEvent" {
@DomName('MediaKeyEvent.message')
@DocsEditable
- @Returns('Uint8List')
- @Creates('Uint8List')
- final List<int> message;
+ final Uint8List message;
@DomName('MediaKeyEvent.sessionId')
@DocsEditable
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698