Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(717)

Unified Diff: lib/html/dartium/html_dartium.dart

Issue 10869056: SQLResultRowList.item converts row into map. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | tests/html/websql_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index f270742488e88bb4de8fdc90485fea3e3a3c5cd4..6614806fa28267aad146b4682763874dd5c42c66 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -14306,7 +14306,7 @@ class _SQLResultSetRowListImpl extends NativeFieldWrapperClass1 implements SQLRe
int get length() native "SQLResultSetRowList_length_Getter";
- Object item(int index) native "SQLResultSetRowList_item_Callback";
+ Map item(int index) native "SQLResultSetRowList_item_Callback";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -32337,7 +32337,7 @@ interface SQLResultSetRowList {
final int length;
/** @domName SQLResultSetRowList.item */
- Object item(int index);
+ Map item(int index);
}
// 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
@@ -40887,11 +40887,7 @@ get _functionRegistry {
/// Object proxy implementation.
class _DartProxyRegistry extends _Registry<Object> {
- final ReceivePortSync _port;
-
- _DartProxyRegistry() :
- super('dart-ref'),
- _port = new ReceivePortSync() {
+ _DartProxyRegistry() : super('dart-ref') {
_port.receive((msg) {
// TODO(vsm): Support a mechanism to register a handler here.
throw 'Invocation unsupported on Dart proxies';
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | tests/html/websql_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698