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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 12886032: Make Float{32,64}Array implement List<double>. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/scripts/htmldartgenerator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 9e74e4fa9d4b08c067295a9f561c995a7a139356..11cc71027f3848f97a186913839f7b188b615c39 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -12237,7 +12237,7 @@ class FileWriterSync extends NativeFieldWrapperClass1 {
@DocsEditable
@DomName('Float32Array')
-class Float32Array extends ArrayBufferView implements List<num> {
+class Float32Array extends ArrayBufferView implements List<double> {
Float32Array.internal() : super.internal();
@DomName('Float32Array.Float32Array')
@@ -12486,7 +12486,7 @@ class Float32Array extends ArrayBufferView implements List<num> {
@DocsEditable
@DomName('Float64Array')
-class Float64Array extends ArrayBufferView implements List<num> {
+class Float64Array extends ArrayBufferView implements List<double> {
Float64Array.internal() : super.internal();
@DomName('Float64Array.Float64Array')
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/scripts/htmldartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698