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

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

Issue 11369243: Make Exception a class, not an interface, and remove the const constructor. (Closed) Base URL: http://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:
Download patch
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 d256c83cbbc8f907e5241a32bbf3fa6f4b651d04..10aea61311d2f7fc51b772493f2d4773ef6a1e4e 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -29795,9 +29795,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";

Powered by Google App Engine
This is Rietveld 408576698