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

Unified Diff: runtime/lib/byte_array.dart

Issue 12039047: Rename xxxArray_newTransferable natives to xxxList_newTransferable. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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
« no previous file with comments | « runtime/lib/byte_array.cc ('k') | runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/byte_array.dart
===================================================================
--- runtime/lib/byte_array.dart (revision 17494)
+++ runtime/lib/byte_array.dart (working copy)
@@ -17,7 +17,7 @@
}
static _ExternalInt8Array _newTransferable(int length)
- native "Int8Array_newTransferable";
+ native "Int8List_newTransferable";
}
@@ -36,7 +36,7 @@
}
static _ExternalUint8Array _newTransferable(int length)
- native "Uint8Array_newTransferable";
+ native "Uint8List_newTransferable";
}
@@ -55,7 +55,7 @@
}
static _ExternalUint8ClampedArray _newTransferable(int length)
- native "Uint8ClampedArray_newTransferable";
+ native "Uint8ClampedList_newTransferable";
}
@@ -74,7 +74,7 @@
}
static _ExternalInt16Array _newTransferable(int length)
- native "Int16Array_newTransferable";
+ native "Int16List_newTransferable";
}
@@ -93,7 +93,7 @@
}
static _ExternalUint16Array _newTransferable(int length)
- native "Uint16Array_newTransferable";
+ native "Uint16List_newTransferable";
}
@@ -112,7 +112,7 @@
}
static _ExternalInt32Array _newTransferable(int length)
- native "Int32Array_newTransferable";
+ native "Int32List_newTransferable";
}
@@ -131,7 +131,7 @@
}
static _ExternalUint32Array _newTransferable(int length)
- native "Uint32Array_newTransferable";
+ native "Uint32List_newTransferable";
}
@@ -150,7 +150,7 @@
}
static _ExternalInt64Array _newTransferable(int length)
- native "Int64Array_newTransferable";
+ native "Int64List_newTransferable";
}
@@ -169,7 +169,7 @@
}
static _ExternalUint64Array _newTransferable(int length)
- native "Uint64Array_newTransferable";
+ native "Uint64List_newTransferable";
}
@@ -188,7 +188,7 @@
}
static _ExternalFloat32Array _newTransferable(int length)
- native "Float32Array_newTransferable";
+ native "Float32List_newTransferable";
}
@@ -207,7 +207,7 @@
}
static _ExternalFloat64Array _newTransferable(int length)
- native "Float64Array_newTransferable";
+ native "Float64List_newTransferable";
}
« no previous file with comments | « runtime/lib/byte_array.cc ('k') | runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698