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

Unified Diff: lib/dom/templates/html/frog/impl_IDBDatabase.darttemplate

Issue 10535139: Unbreak frog html tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | « no previous file | lib/html/frog/html_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/templates/html/frog/impl_IDBDatabase.darttemplate
diff --git a/lib/dom/templates/html/frog/impl_IDBDatabase.darttemplate b/lib/dom/templates/html/frog/impl_IDBDatabase.darttemplate
index efbc6a79c88f7554c2dd676d2fda4241f32b2c8a..900e0dda2e374486fc72c4fb4eec120844a06a94 100644
--- a/lib/dom/templates/html/frog/impl_IDBDatabase.darttemplate
+++ b/lib/dom/templates/html/frog/impl_IDBDatabase.darttemplate
@@ -29,8 +29,6 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
return txn;
}
- static var _transaction_fn; // Assigned one of the following:
-
static _IDBTransactionImpl _transaction_string_mode($CLASSNAME db, stores, mode) {
return db._transaction(stores, mode);
}
@@ -47,3 +45,7 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
static bool _hasNumericMode(txn) native 'return typeof(txn.mode) === "number"';
$!MEMBERS}
+
+// TODO(sra): This should be a static member of _IDBTransactionImpl but frog
+// can't handle that. Move it back after frog is completely done.
+var _transaction_fn; // Assigned one of the static methods.
« no previous file with comments | « no previous file | lib/html/frog/html_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698