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

Side by Side Diff: client/html/generated/src/interface/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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 interface DataView extends ArrayBufferView {
8
9 num getFloat32(int byteOffset, [bool littleEndian]);
10
11 num getFloat64(int byteOffset, [bool littleEndian]);
12
13 int getInt16(int byteOffset, [bool littleEndian]);
14
15 int getInt32(int byteOffset, [bool littleEndian]);
16
17 int getInt8();
18
19 int getUint16(int byteOffset, [bool littleEndian]);
20
21 int getUint32(int byteOffset, [bool littleEndian]);
22
23 int getUint8();
24
25 void setFloat32(int byteOffset, num value, [bool littleEndian]);
26
27 void setFloat64(int byteOffset, num value, [bool littleEndian]);
28
29 void setInt16(int byteOffset, int value, [bool littleEndian]);
30
31 void setInt32(int byteOffset, int value, [bool littleEndian]);
32
33 void setInt8();
34
35 void setUint16(int byteOffset, int value, [bool littleEndian]);
36
37 void setUint32(int byteOffset, int value, [bool littleEndian]);
38
39 void setUint8();
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698