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

Unified Diff: client/dom/generated/src/frog/Float64Array.dart

Issue 9264057: Refresh dart:dom libraries from WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't re-implement List<>, causes code that dartc rejects due to static 'override' Created 8 years, 11 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: client/dom/generated/src/frog/Float64Array.dart
diff --git a/client/dom/generated/src/frog/Float64Array.dart b/client/dom/generated/src/frog/Float64Array.dart
index 31670e005dce0955013efb1b02086bf1ef69261d..1762c817f7fb89091448302280f19a25fa21f59f 100644
--- a/client/dom/generated/src/frog/Float64Array.dart
+++ b/client/dom/generated/src/frog/Float64Array.dart
@@ -1,13 +1,13 @@
class Float64ArrayJs extends ArrayBufferViewJs implements Float64Array, List<num> native "*Float64Array" {
- factory Float64Array(int length) => _construct(length);
+ factory Float64Array(int length) => _construct_Float64Array(length);
- factory Float64Array.fromList(List<num> list) => _construct(list);
+ factory Float64Array.fromList(List<num> list) => _construct_Float64Array(list);
- factory Float64Array.fromBuffer(ArrayBuffer buffer) => _construct(buffer);
+ factory Float64Array.fromBuffer(ArrayBuffer buffer) => _construct_Float64Array(buffer);
- static _construct(arg) native 'return new Float64Array(arg);';
+ static _construct_Float64Array(arg) native 'return new Float64Array(arg);';
static final int BYTES_PER_ELEMENT = 8;

Powered by Google App Engine
This is Rietveld 408576698