| 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 2f75c5adcc09cbb4d20d9e19c2987c0149b838dd..8960eedfba0ba0c79033e08706965a72da47a948 100644
|
| --- a/sdk/lib/web_sql/dartium/web_sql_dartium.dart
|
| +++ b/sdk/lib/web_sql/dartium/web_sql_dartium.dart
|
| @@ -34,6 +34,15 @@ final web_sqlBlinkMap = {
|
|
|
| };
|
|
|
| +// FIXME: Can we make this private?
|
| +final web_sqlBlinkFunctionMap = {
|
| + 'Database': () => SqlDatabase.internalCreateSqlDatabase,
|
| + 'SQLError': () => SqlError.internalCreateSqlError,
|
| + 'SQLResultSet': () => SqlResultSet.internalCreateSqlResultSet,
|
| + 'SQLResultSetRowList': () => SqlResultSetRowList.internalCreateSqlResultSetRowList,
|
| + 'SQLTransaction': () => SqlTransaction.internalCreateSqlTransaction,
|
| +
|
| +};
|
| // 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.
|
|
|