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

Side by Side Diff: client/html/generated/html/frog/DataView.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1
2 class _DataViewImpl extends _ArrayBufferViewImpl implements DataView native "*Da taView" {
3
4 num getFloat32(int byteOffset, [bool littleEndian = null]) native;
5
6 num getFloat64(int byteOffset, [bool littleEndian = null]) native;
7
8 int getInt16(int byteOffset, [bool littleEndian = null]) native;
9
10 int getInt32(int byteOffset, [bool littleEndian = null]) native;
11
12 Object getInt8() native;
13
14 int getUint16(int byteOffset, [bool littleEndian = null]) native;
15
16 int getUint32(int byteOffset, [bool littleEndian = null]) native;
17
18 Object getUint8() native;
19
20 void setFloat32(int byteOffset, num value, [bool littleEndian = null]) native;
21
22 void setFloat64(int byteOffset, num value, [bool littleEndian = null]) native;
23
24 void setInt16(int byteOffset, int value, [bool littleEndian = null]) native;
25
26 void setInt32(int byteOffset, int value, [bool littleEndian = null]) native;
27
28 void setInt8() native;
29
30 void setUint16(int byteOffset, int value, [bool littleEndian = null]) native;
31
32 void setUint32(int byteOffset, int value, [bool littleEndian = null]) native;
33
34 void setUint8() native;
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698