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

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

Issue 10543115: Remove _ from params (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Refresh Created 8 years, 6 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 | « no previous file | lib/html/src/dartium_FactoryProviders.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index a6f7a434f687227d69372ec7c36ed618f992edd0..206d572ea5e524c7bfa0cf2d4b5e6d9e5da20bd8 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -40510,63 +40510,63 @@ class _TypedArrayFactoryProvider {
factory Float32Array.fromBuffer(ArrayBuffer buffer,
[int byteOffset = 0, int length]) =>
_F32(buffer, byteOffset, length);
- static _F32(_arg0, [_arg1, _arg2]) native "Float32Array_constructor_Callback";
+ static _F32(arg0, [arg1, arg2]) native "Float32Array_constructor_Callback";
factory Float64Array(int length) => _F64(length);
factory Float64Array.fromList(List<num> list) => _F64(ensureNative(list));
factory Float64Array.fromBuffer(ArrayBuffer buffer,
[int byteOffset = 0, int length]) =>
_F64(buffer, byteOffset, length);
- static _F64(_arg0, [_arg1, _arg2]) native "Float64Array_constructor_Callback";
+ static _F64(arg0, [arg1, arg2]) native "Float64Array_constructor_Callback";
factory Int8Array(int length) => _I8(length);
factory Int8Array.fromList(List<num> list) => _I8(ensureNative(list));
factory Int8Array.fromBuffer(ArrayBuffer buffer,
[int byteOffset = 0, int length]) =>
_I8(buffer, byteOffset, length);
- static _I8(_arg0, [_arg1, _arg2]) native "Int8Array_constructor_Callback";
+ static _I8(arg0, [arg1, arg2]) native "Int8Array_constructor_Callback";
factory Int16Array(int length) => _I16(length);
factory Int16Array.fromList(List<num> list) => _I16(ensureNative(list));
factory Int16Array.fromBuffer(ArrayBuffer buffer,
[int byteOffset = 0, int length]) =>
_I16(buffer, byteOffset, length);
- static _I16(_arg0, [_arg1, _arg2]) native "Int16Array_constructor_Callback";
+ static _I16(arg0, [arg1, arg2]) native "Int16Array_constructor_Callback";
factory Int32Array(int length) => _I32(length);
factory Int32Array.fromList(List<num> list) => _I32(ensureNative(list));
factory Int32Array.fromBuffer(ArrayBuffer buffer,
[int byteOffset = 0, int length]) =>
_I32(buffer, byteOffset, length);
- static _I32(_arg0, [_arg1, _arg2]) native "Int32Array_constructor_Callback";
+ static _I32(arg0, [arg1, arg2]) native "Int32Array_constructor_Callback";
factory Uint8Array(int length) => _U8(length);
factory Uint8Array.fromList(List<num> list) => _U8(ensureNative(list));
factory Uint8Array.fromBuffer(ArrayBuffer buffer,
[int byteOffset = 0, int length]) =>
_U8(buffer, byteOffset, length);
- static _U8(_arg0, [_arg1, _arg2]) native "Uint8Array_constructor_Callback";
+ static _U8(arg0, [arg1, arg2]) native "Uint8Array_constructor_Callback";
factory Uint16Array(int length) => _U16(length);
factory Uint16Array.fromList(List<num> list) => _U16(ensureNative(list));
factory Uint16Array.fromBuffer(ArrayBuffer buffer,
[int byteOffset = 0, int length]) =>
_U16(buffer, byteOffset, length);
- static _U16(_arg0, [_arg1, _arg2]) native "Uint16Array_constructor_Callback";
+ static _U16(arg0, [arg1, arg2]) native "Uint16Array_constructor_Callback";
factory Uint32Array(int length) => _U32(length);
factory Uint32Array.fromList(List<num> list) => _U32(ensureNative(list));
factory Uint32Array.fromBuffer(ArrayBuffer buffer,
[int byteOffset = 0, int length]) =>
_U32(buffer, byteOffset, length);
- static _U32(_arg0, [_arg1, _arg2]) native "Uint32Array_constructor_Callback";
+ static _U32(arg0, [arg1, arg2]) native "Uint32Array_constructor_Callback";
factory Uint8ClampedArray(int length) => _U8C(length);
factory Uint8ClampedArray.fromList(List<num> list) => _U8C(ensureNative(list));
factory Uint8ClampedArray.fromBuffer(ArrayBuffer buffer,
[int byteOffset = 0, int length]) =>
_U8C(buffer, byteOffset, length);
- static _U8C(_arg0, [_arg1, _arg2]) native "Uint8ClampedArray_constructor_Callback";
+ static _U8C(arg0, [arg1, arg2]) native "Uint8ClampedArray_constructor_Callback";
static ensureNative(List list) => list; // TODO: make sure.
}
« no previous file with comments | « no previous file | lib/html/src/dartium_FactoryProviders.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698