| 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 /// @domName DatabaseSync |
| 8 interface DatabaseSync { |
| 9 |
| 10 /** @domName DatabaseSync.lastErrorMessage */ |
| 11 final String lastErrorMessage; |
| 12 |
| 13 /** @domName DatabaseSync.version */ |
| 14 final String version; |
| 15 |
| 16 /** @domName DatabaseSync.changeVersion */ |
| 17 void changeVersion(String oldVersion, String newVersion, [SQLTransactionSyncCa
llback callback]); |
| 18 |
| 19 /** @domName DatabaseSync.readTransaction */ |
| 20 void readTransaction(SQLTransactionSyncCallback callback); |
| 21 |
| 22 /** @domName DatabaseSync.transaction */ |
| 23 void transaction(SQLTransactionSyncCallback callback); |
| 24 } |
| OLD | NEW |