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

Unified Diff: client/dom/generated/src/frog/IDBDatabase.dart

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 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: client/dom/generated/src/frog/IDBDatabase.dart
diff --git a/client/dom/generated/src/frog/IDBDatabase.dart b/client/dom/generated/src/frog/IDBDatabase.dart
index 07a34fb9faba9eab3c9bd9ac37b2a0645a17a6b6..7827727249cb019c9167626c659713d4c42636b9 100644
--- a/client/dom/generated/src/frog/IDBDatabase.dart
+++ b/client/dom/generated/src/frog/IDBDatabase.dart
@@ -1,5 +1,5 @@
-class IDBDatabase native "*IDBDatabase" {
+class IDBDatabaseJS implements IDBDatabase native "*IDBDatabase" {
String get name() native "return this.name;";
@@ -21,17 +21,17 @@ class IDBDatabase native "*IDBDatabase" {
void close() native;
- IDBObjectStore createObjectStore(String name) native;
+ IDBObjectStoreJS createObjectStore(String name) native;
void deleteObjectStore(String name) native;
- bool dispatchEvent(Event evt) native;
+ bool dispatchEvent(EventJS evt) native;
void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
- IDBVersionChangeRequest setVersion(String version) native;
+ IDBVersionChangeRequestJS setVersion(String version) native;
- IDBTransaction transaction(String storeName, int mode) native;
+ IDBTransactionJS transaction(String storeName, int mode) native;
var dartObjectLocalStorage;
« no previous file with comments | « client/dom/generated/src/frog/IDBCursorWithValue.dart ('k') | client/dom/generated/src/frog/IDBDatabaseError.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698