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

Unified Diff: lib/html/frog/html_frog.dart

Side-by-side diff isn't available for this file because of its large size.
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:
Download patch
« no previous file with comments | « lib/dom/templates/html/frog/impl_IDBDatabase.darttemplate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/frog/html_frog.dart
diff --git a/lib/html/frog/html_frog.dart b/lib/html/frog/html_frog.dart
index bafd565ac59197eec44ad315cc3ab6b58b12eb40..d09988ebfb5503f4ede88ff0d3cae93bde1776ad 100644
--- a/lib/html/frog/html_frog.dart
+++ b/lib/html/frog/html_frog.dart
@@ -7515,8 +7515,6 @@ class _IDBDatabaseImpl extends _EventTargetImpl implements IDBDatabase native "*
return txn;
}
- static var _transaction_fn; // Assigned one of the following:
-
static _IDBTransactionImpl _transaction_string_mode(_IDBDatabaseImpl db, stores, mode) {
return db._transaction(stores, mode);
}
@@ -7557,6 +7555,10 @@ class _IDBDatabaseImpl extends _EventTargetImpl implements IDBDatabase native "*
_IDBVersionChangeRequestImpl setVersion(String version) native;
}
+// 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.
+
class _IDBDatabaseEventsImpl extends _EventsImpl implements IDBDatabaseEvents {
_IDBDatabaseEventsImpl(_ptr) : super(_ptr);
« no previous file with comments | « lib/dom/templates/html/frog/impl_IDBDatabase.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698