OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012, 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 IDBTransaction { | |
8 | |
9 static final int READ_ONLY = 0; | |
10 | |
11 static final int READ_WRITE = 1; | |
12 | |
13 static final int VERSION_CHANGE = 2; | |
14 | |
15 final IDBDatabase db; | |
16 | |
17 final int mode; | |
18 | |
19 EventListener onabort; | |
20 | |
21 EventListener oncomplete; | |
22 | |
23 EventListener onerror; | |
24 | |
25 void abort(); | |
26 | |
27 void addEventListener(String type, EventListener listener, [bool useCapture]); | |
28 | |
29 bool dispatchEvent(Event evt); | |
30 | |
31 IDBObjectStore objectStore(String name); | |
32 | |
33 void removeEventListener(String type, EventListener listener, [bool useCapture
]); | |
34 } | |
OLD | NEW |