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

Unified Diff: sdk/lib/html/src/dartium_FactoryProviders.dart

Issue 11275311: Fix incorrect names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/src/dartium_FactoryProviders.dart
diff --git a/sdk/lib/html/src/dartium_FactoryProviders.dart b/sdk/lib/html/src/dartium_FactoryProviders.dart
index 0678689616adb14b7725447797209f93f0e37812..440c49a105ab951350a442dd9325065eca9db361 100644
--- a/sdk/lib/html/src/dartium_FactoryProviders.dart
+++ b/sdk/lib/html/src/dartium_FactoryProviders.dart
@@ -87,9 +87,9 @@ class _TypedArrayFactoryProvider {
static _U32(arg0, [arg1, arg2]) native "Uint32Array_constructor_Callback";
static Uint8ClampedArray createUint8ClampedArray(int length) => _U8C(length);
- static Uint8ClampedArray createUint8ClampedArrayUint8ClampedArray_fromList(
+ static Uint8ClampedArray createUint8ClampedArray_fromList(
List<num> list) => _U8C(ensureNative(list));
- static Uint8ClampedArray createUint8ClampedArrayUint8ClampedArray_fromBuffer(
+ static Uint8ClampedArray createUint8ClampedArray_fromBuffer(
ArrayBuffer buffer, [int byteOffset = 0, int length]) =>
_U8C(buffer, byteOffset, length);
static _U8C(arg0, [arg1, arg2]) native "Uint8ClampedArray_constructor_Callback";
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698