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

Unified Diff: client/dom/generated/src/frog/Int16Array.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/Int16Array.dart
diff --git a/client/dom/generated/src/frog/Int16Array.dart b/client/dom/generated/src/frog/Int16Array.dart
index 189c817f4353cb4254254cdfb43f26636c9fa5dd..0839f54c7fa1436e59f36f695f2b9e7a0c995df3 100644
--- a/client/dom/generated/src/frog/Int16Array.dart
+++ b/client/dom/generated/src/frog/Int16Array.dart
@@ -1,13 +1,13 @@
class Int16ArrayJs extends ArrayBufferViewJs implements Int16Array, List<int> native "*Int16Array" {
- factory Int16Array(int length) => _construct(length);
+ factory Int16Array(int length) => _construct_Int16Array(length);
- factory Int16Array.fromList(List<int> list) => _construct(list);
+ factory Int16Array.fromList(List<int> list) => _construct_Int16Array(list);
- factory Int16Array.fromBuffer(ArrayBuffer buffer) => _construct(buffer);
+ factory Int16Array.fromBuffer(ArrayBuffer buffer) => _construct_Int16Array(buffer);
- static _construct(arg) native 'return new Int16Array(arg);';
+ static _construct_Int16Array(arg) native 'return new Int16Array(arg);';
static final int BYTES_PER_ELEMENT = 2;
« no previous file with comments | « client/dom/generated/src/frog/InspectorFrontendHost.dart ('k') | client/dom/generated/src/frog/Int32Array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698