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

Unified Diff: client/dom/generated/src/frog/Uint8Array.dart

Issue 9264057: Refresh dart:dom libraries from WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: CR changes Created 8 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
Index: client/dom/generated/src/frog/Uint8Array.dart
diff --git a/client/dom/generated/src/frog/Uint8Array.dart b/client/dom/generated/src/frog/Uint8Array.dart
index 01d89d8824cb8426482b396171116343f0cc1be0..b953ad5eb85b4b70dff56804d9c23565d1b1c769 100644
--- a/client/dom/generated/src/frog/Uint8Array.dart
+++ b/client/dom/generated/src/frog/Uint8Array.dart
@@ -1,13 +1,13 @@
class Uint8ArrayJs extends ArrayBufferViewJs implements Uint8Array, List<int> native "*Uint8Array" {
- factory Uint8Array(int length) => _construct(length);
+ factory Uint8Array(int length) => _construct_Uint8Array(length);
- factory Uint8Array.fromList(List<int> list) => _construct(list);
+ factory Uint8Array.fromList(List<int> list) => _construct_Uint8Array(list);
- factory Uint8Array.fromBuffer(ArrayBuffer buffer) => _construct(buffer);
+ factory Uint8Array.fromBuffer(ArrayBuffer buffer) => _construct_Uint8Array(buffer);
- static _construct(arg) native 'return new Uint8Array(arg);';
+ static _construct_Uint8Array(arg) native 'return new Uint8Array(arg);';
static final int BYTES_PER_ELEMENT = 1;
« no previous file with comments | « client/dom/generated/src/frog/Uint32Array.dart ('k') | client/dom/generated/src/frog/Uint8ClampedArray.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698