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

Side by Side Diff: client/dom/generated/src/frog/DataView.dart

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class DataView extends ArrayBufferView native "*DataView" { 2 class DataViewJS extends ArrayBufferViewJS implements DataView native "*DataView " {
3 3
4 num getFloat32(int byteOffset, [bool littleEndian = null]) native; 4 num getFloat32(int byteOffset, [bool littleEndian = null]) native;
5 5
6 num getFloat64(int byteOffset, [bool littleEndian = null]) native; 6 num getFloat64(int byteOffset, [bool littleEndian = null]) native;
7 7
8 int getInt16(int byteOffset, [bool littleEndian = null]) native; 8 int getInt16(int byteOffset, [bool littleEndian = null]) native;
9 9
10 int getInt32(int byteOffset, [bool littleEndian = null]) native; 10 int getInt32(int byteOffset, [bool littleEndian = null]) native;
11 11
12 Object getInt8() native; 12 Object getInt8() native;
(...skipping 13 matching lines...) Expand all
26 void setInt32(int byteOffset, int value, [bool littleEndian = null]) native; 26 void setInt32(int byteOffset, int value, [bool littleEndian = null]) native;
27 27
28 void setInt8() native; 28 void setInt8() native;
29 29
30 void setUint16(int byteOffset, int value, [bool littleEndian = null]) native; 30 void setUint16(int byteOffset, int value, [bool littleEndian = null]) native;
31 31
32 void setUint32(int byteOffset, int value, [bool littleEndian = null]) native; 32 void setUint32(int byteOffset, int value, [bool littleEndian = null]) native;
33 33
34 void setUint8() native; 34 void setUint8() native;
35 } 35 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DataTransferItemList.dart ('k') | client/dom/generated/src/frog/Database.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698