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

Unified Diff: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart

Issue 142713007: Updating IDL files from Chrome roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/indexed_db/dartium/indexed_db_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
diff --git a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
index 5ce201bb8c07b5e9d32989c4ea18082dafe9ff97..b34497721d2d72a6a7fea5971ab126d49951963e 100644
--- a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
+++ b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
@@ -264,12 +264,17 @@ class Cursor extends Interceptor native "IDBCursor" {
@DocsEditable()
@Creates('Null')
@Returns('ObjectStore|Index|Null')
- final dynamic source;
+ final Object source;
@DomName('IDBCursor.advance')
@DocsEditable()
void advance(int count) native;
+ @DomName('IDBCursor.continuePrimaryKey')
+ @DocsEditable()
+ @Experimental() // untriaged
+ void continuePrimaryKey(Object key, Object primaryKey) native;
+
@JSName('delete')
@DomName('IDBCursor.delete')
@DocsEditable()
@@ -442,7 +447,7 @@ class Database extends EventTarget native "IDBDatabase" {
@DocsEditable()
@Creates('int|String|Null')
@Returns('int|String|Null')
- final dynamic version;
+ final Object version;
@DomName('IDBDatabase.close')
@DocsEditable()
@@ -731,7 +736,7 @@ class Index extends Interceptor native "IDBIndex" {
@DomName('IDBIndex.keyPath')
@DocsEditable()
@annotation_Creates_SerializedScriptValue
- final dynamic keyPath;
+ final Object keyPath;
@DomName('IDBIndex.multiEntry')
@DocsEditable()
@@ -1007,7 +1012,7 @@ class ObjectStore extends Interceptor native "IDBObjectStore" {
@DomName('IDBObjectStore.keyPath')
@DocsEditable()
@annotation_Creates_SerializedScriptValue
- final dynamic keyPath;
+ final Object keyPath;
@DomName('IDBObjectStore.name')
@DocsEditable()
@@ -1279,7 +1284,7 @@ class Request extends EventTarget native "IDBRequest" {
@DomName('IDBRequest.source')
@DocsEditable()
@Creates('Null')
- final dynamic source;
+ final Object source;
@DomName('IDBRequest.transaction')
@DocsEditable()
@@ -1427,23 +1432,11 @@ class VersionChangeEvent extends Event native "IDBVersionChangeEvent" {
@DocsEditable()
@Creates('int|String|Null')
@Returns('int|String|Null')
- final dynamic newVersion;
+ final Object newVersion;
@DomName('IDBVersionChangeEvent.oldVersion')
@DocsEditable()
@Creates('int|String|Null')
@Returns('int|String|Null')
- final dynamic oldVersion;
-}
-// 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.
-
-
-@DocsEditable()
-@DomName('IDBAny')
-@deprecated // nonstandard
-abstract class _IDBAny extends Interceptor native "IDBAny" {
- // To suppress missing implicit constructor warnings.
- factory _IDBAny._() { throw new UnsupportedError("Not supported"); }
+ final Object oldVersion;
}
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/indexed_db/dartium/indexed_db_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698