| OLD | NEW |
| (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 IDBDatabase { | |
| 8 | |
| 9 String get name(); | |
| 10 | |
| 11 String get version(); | |
| 12 | |
| 13 void addEventListener(String type, EventListener listener, [bool useCapture]); | |
| 14 | |
| 15 void close(); | |
| 16 | |
| 17 IDBObjectStore createObjectStore(String name); | |
| 18 | |
| 19 void deleteObjectStore(String name); | |
| 20 | |
| 21 bool dispatchEvent(Event evt); | |
| 22 | |
| 23 void removeEventListener(String type, EventListener listener, [bool useCapture
]); | |
| 24 | |
| 25 IDBVersionChangeRequest setVersion(String version); | |
| 26 | |
| 27 IDBTransaction transaction(String storeName, int mode); | |
| 28 } | |
| OLD | NEW |