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

Unified Diff: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart

Issue 27358002: Generate a class table of all the IDL classes in the database. This table is used (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 2 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
Index: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
===================================================================
--- sdk/lib/indexed_db/dartium/indexed_db_dartium.dart (revision 28728)
+++ sdk/lib/indexed_db/dartium/indexed_db_dartium.dart (working copy)
@@ -40,7 +40,7 @@
@DomName('IDBCursor')
@Unstable()
-class Cursor extends NativeFieldWrapperClass1 {
+class Cursor extends NativeFieldWrapperClass2 {
@DomName('IDBCursor.delete')
Future delete() {
try {
@@ -265,7 +265,7 @@
@SupportedBrowser(SupportedBrowser.IE, '10')
@Experimental()
@Unstable()
-class IdbFactory extends NativeFieldWrapperClass1 {
+class IdbFactory extends NativeFieldWrapperClass2 {
/**
* Checks to see if Indexed DB is supported on the current platform.
*/
@@ -394,7 +394,7 @@
@DomName('IDBIndex')
@Unstable()
-class Index extends NativeFieldWrapperClass1 {
+class Index extends NativeFieldWrapperClass2 {
@DomName('IDBIndex.count')
Future<int> count([key_OR_range]) {
try {
@@ -532,7 +532,7 @@
@DomName('IDBKeyRange')
@Unstable()
-class KeyRange extends NativeFieldWrapperClass1 {
+class KeyRange extends NativeFieldWrapperClass2 {
@DomName('IDBKeyRange.only')
factory KeyRange.only(/*Key*/ value) =>
_KeyRangeFactoryProvider.createKeyRange_only(value);
@@ -598,7 +598,7 @@
@DomName('IDBObjectStore')
@Unstable()
-class ObjectStore extends NativeFieldWrapperClass1 {
+class ObjectStore extends NativeFieldWrapperClass2 {
@DomName('IDBObjectStore.add')
Future add(value, [key]) {
@@ -1053,7 +1053,7 @@
@DocsEditable()
@DomName('IDBAny')
@deprecated // nonstandard
-abstract class _IDBAny extends NativeFieldWrapperClass1 {
+abstract class _IDBAny extends NativeFieldWrapperClass2 {
// To suppress missing implicit constructor warnings.
factory _IDBAny._() { throw new UnsupportedError("Not supported"); }

Powered by Google App Engine
This is Rietveld 408576698