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

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

Issue 671023003: More dart:blink entry point tweaks (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Static permission getter Created 6 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
diff --git a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
index 2360ca5a0cd98a2f1b933e2e5e74087a3328b189..125d18796a3fa21e3089685fd7042f383be53a90 100644
--- a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
+++ b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
@@ -105,14 +105,14 @@ class Cursor extends NativeFieldWrapperClass2 {
@DomName('IDBCursor.delete')
@DocsEditable()
- Request _delete() => _blink.BlinkIDBCursor.delete_Callback(this);
+ Request _delete() => _blink.BlinkIDBCursor.delete_Callback_0(this);
void next([Object key]) {
if (key != null) {
_blink.BlinkIDBCursor.continue_Callback_1(this, key);
return;
}
- _blink.BlinkIDBCursor.continue_Callback(this);
+ _blink.BlinkIDBCursor.continue_Callback_0(this);
return;
}
@@ -232,7 +232,7 @@ class Database extends EventTarget {
@DomName('IDBDatabase.close')
@DocsEditable()
- void close() => _blink.BlinkIDBDatabase.close_Callback(this);
+ void close() => _blink.BlinkIDBDatabase.close_Callback_0(this);
ObjectStore _createObjectStore(String name, [Map options]) {
if (options != null) {
@@ -420,7 +420,7 @@ class IdbFactory extends NativeFieldWrapperClass2 {
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.SAFARI)
@Experimental()
- Request _webkitGetDatabaseNames() => _blink.BlinkIDBFactory.webkitGetDatabaseNames_Callback(this);
+ Request _webkitGetDatabaseNames() => _blink.BlinkIDBFactory.webkitGetDatabaseNames_Callback_0(this);
}
@@ -827,7 +827,7 @@ class ObjectStore extends NativeFieldWrapperClass2 {
@DomName('IDBObjectStore.clear')
@DocsEditable()
- Request _clear() => _blink.BlinkIDBObjectStore.clear_Callback(this);
+ Request _clear() => _blink.BlinkIDBObjectStore.clear_Callback_0(this);
@DomName('IDBObjectStore.count')
@DocsEditable()
@@ -1108,7 +1108,7 @@ class Transaction extends EventTarget {
@DomName('IDBTransaction.abort')
@DocsEditable()
- void abort() => _blink.BlinkIDBTransaction.abort_Callback(this);
+ void abort() => _blink.BlinkIDBTransaction.abort_Callback_0(this);
@DomName('IDBTransaction.objectStore')
@DocsEditable()

Powered by Google App Engine
This is Rietveld 408576698