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

Unified Diff: client/dom/generated/src/wrapping/_IDBDatabaseWrappingImplementation.dart

Issue 9453004: Cross frame access tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final pass of comments, update of status Created 8 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 | « client/dom/generated/src/interface/IDBDatabase.dart ('k') | client/dom/scripts/systemfrog.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/wrapping/_IDBDatabaseWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBDatabaseWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBDatabaseWrappingImplementation.dart
index 0520ac73325a86c3af78b2510252f3a9bb6c102e..f0a1021c424b9bb3e12f81cc73a4b61a83649b82 100644
--- a/client/dom/generated/src/wrapping/_IDBDatabaseWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBDatabaseWrappingImplementation.dart
@@ -86,15 +86,10 @@ class _IDBDatabaseWrappingImplementation extends DOMWrapperBase implements IDBDa
}
static IDBVersionChangeRequest _setVersion(receiver, version) native;
- IDBTransaction transaction(String storeName, [int mode = null]) {
- if (mode === null) {
- return _transaction(this, storeName);
- } else {
- return _transaction_2(this, storeName, mode);
- }
+ IDBTransaction transaction(String storeName, int mode) {
+ return _transaction(this, storeName, mode);
}
- static IDBTransaction _transaction(receiver, storeName) native;
- static IDBTransaction _transaction_2(receiver, storeName, mode) native;
+ static IDBTransaction _transaction(receiver, storeName, mode) native;
String get typeName() { return "IDBDatabase"; }
}
« no previous file with comments | « client/dom/generated/src/interface/IDBDatabase.dart ('k') | client/dom/scripts/systemfrog.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698