| Index: sdk/lib/web_sql/dartium/web_sql_dartium.dart
|
| diff --git a/sdk/lib/web_sql/dartium/web_sql_dartium.dart b/sdk/lib/web_sql/dartium/web_sql_dartium.dart
|
| index 992c41ea505f6908539f32d1138ebd3cc2548e49..968b7c7e6b1b7c15981c19fb9c615f2db9e8ed07 100644
|
| --- a/sdk/lib/web_sql/dartium/web_sql_dartium.dart
|
| +++ b/sdk/lib/web_sql/dartium/web_sql_dartium.dart
|
| @@ -24,6 +24,16 @@ import 'dart:_blink' as _blink;
|
|
|
|
|
|
|
| +// FIXME: Can we make this private?
|
| +const web_sqlBlinkMap = const {
|
| + 'Database': SqlDatabase,
|
| + 'SQLError': SqlError,
|
| + 'SQLResultSet': SqlResultSet,
|
| + 'SQLResultSetRowList': SqlResultSetRowList,
|
| + 'SQLTransaction': SqlTransaction,
|
| + 'SQLTransactionSync': _SQLTransactionSync,
|
| +
|
| +};
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|