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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 9969036: Revert "Typed array constructors with optional buffer offset and length." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 | « lib/dom/templates/html/frog/html_frog.darttemplate ('k') | lib/html/frog/html_frog.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 88cb01d7e4b6b79eccdc307f83e308c94245d70a..e5910a30c26c6b78f98d71f80393d3a2c6c8b633 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -27700,7 +27700,7 @@ interface Float32Array extends ArrayBufferView, List<num> default _TypedArrayFac
Float32Array.fromList(List<num> list);
- Float32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
+ Float32Array.fromBuffer(ArrayBuffer buffer);
static final int BYTES_PER_ELEMENT = 4;
@@ -27722,7 +27722,7 @@ interface Float64Array extends ArrayBufferView, List<num> default _TypedArrayFac
Float64Array.fromList(List<num> list);
- Float64Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
+ Float64Array.fromBuffer(ArrayBuffer buffer);
static final int BYTES_PER_ELEMENT = 8;
@@ -28605,7 +28605,7 @@ interface Int16Array extends ArrayBufferView, List<int> default _TypedArrayFacto
Int16Array.fromList(List<int> list);
- Int16Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
+ Int16Array.fromBuffer(ArrayBuffer buffer);
static final int BYTES_PER_ELEMENT = 2;
@@ -28627,7 +28627,7 @@ interface Int32Array extends ArrayBufferView, List<int> default _TypedArrayFacto
Int32Array.fromList(List<int> list);
- Int32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
+ Int32Array.fromBuffer(ArrayBuffer buffer);
static final int BYTES_PER_ELEMENT = 4;
@@ -28649,7 +28649,7 @@ interface Int8Array extends ArrayBufferView, List<int> default _TypedArrayFactor
Int8Array.fromList(List<int> list);
- Int8Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
+ Int8Array.fromBuffer(ArrayBuffer buffer);
static final int BYTES_PER_ELEMENT = 1;
@@ -34513,7 +34513,7 @@ interface Uint16Array extends ArrayBufferView, List<int> default _TypedArrayFact
Uint16Array.fromList(List<int> list);
- Uint16Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
+ Uint16Array.fromBuffer(ArrayBuffer buffer);
static final int BYTES_PER_ELEMENT = 2;
@@ -34535,7 +34535,7 @@ interface Uint32Array extends ArrayBufferView, List<int> default _TypedArrayFact
Uint32Array.fromList(List<int> list);
- Uint32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
+ Uint32Array.fromBuffer(ArrayBuffer buffer);
static final int BYTES_PER_ELEMENT = 4;
@@ -34557,7 +34557,7 @@ interface Uint8Array extends ArrayBufferView, List<int> default _TypedArrayFacto
Uint8Array.fromList(List<int> list);
- Uint8Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
+ Uint8Array.fromBuffer(ArrayBuffer buffer);
static final int BYTES_PER_ELEMENT = 1;
@@ -34579,7 +34579,7 @@ interface Uint8ClampedArray extends Uint8Array default _TypedArrayFactoryProvide
Uint8ClampedArray.fromList(List<int> list);
- Uint8ClampedArray.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
+ Uint8ClampedArray.fromBuffer(ArrayBuffer buffer);
final int length;
« no previous file with comments | « lib/dom/templates/html/frog/html_frog.darttemplate ('k') | lib/html/frog/html_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698