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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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
« no previous file with comments | « client/dom/generated/src/frog/Worker.dart ('k') | client/dom/generated/src/frog/WorkerLocation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/WorkerContext.dart
diff --git a/client/dom/generated/src/frog/WorkerContext.dart b/client/dom/generated/src/frog/WorkerContext.dart
index 72d4d950a6e3f0c47c02f98b6a192bb32aa9017e..a0c78b97a28fb86679e5fb52275dca69dac5b67a 100644
--- a/client/dom/generated/src/frog/WorkerContext.dart
+++ b/client/dom/generated/src/frog/WorkerContext.dart
@@ -1,31 +1,31 @@
-class WorkerContextJS implements WorkerContext native "*WorkerContext" {
+class WorkerContextJs extends DOMTypeJs implements WorkerContext native "*WorkerContext" {
static final int PERSISTENT = 1;
static final int TEMPORARY = 0;
- WorkerLocationJS get location() native "return this.location;";
+ WorkerLocationJs get location() native "return this.location;";
- void set location(WorkerLocationJS value) native "this.location = value;";
+ void set location(WorkerLocationJs value) native "this.location = value;";
- WorkerNavigatorJS get navigator() native "return this.navigator;";
+ WorkerNavigatorJs get navigator() native "return this.navigator;";
- void set navigator(WorkerNavigatorJS value) native "this.navigator = value;";
+ void set navigator(WorkerNavigatorJs value) native "this.navigator = value;";
EventListener get onerror() native "return this.onerror;";
void set onerror(EventListener value) native "this.onerror = value;";
- WorkerContextJS get self() native "return this.self;";
+ WorkerContextJs get self() native "return this.self;";
- void set self(WorkerContextJS value) native "this.self = value;";
+ void set self(WorkerContextJs value) native "this.self = value;";
- IDBFactoryJS get webkitIndexedDB() native "return this.webkitIndexedDB;";
+ IDBFactoryJs get webkitIndexedDB() native "return this.webkitIndexedDB;";
- NotificationCenterJS get webkitNotifications() native "return this.webkitNotifications;";
+ NotificationCenterJs get webkitNotifications() native "return this.webkitNotifications;";
- DOMURLJS get webkitURL() native "return this.webkitURL;";
+ DOMURLJs get webkitURL() native "return this.webkitURL;";
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
@@ -35,13 +35,13 @@ class WorkerContextJS implements WorkerContext native "*WorkerContext" {
void close() native;
- bool dispatchEvent(EventJS evt) native;
+ bool dispatchEvent(EventJs evt) native;
void importScripts() native;
- DatabaseJS openDatabase(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback = null]) native;
+ DatabaseJs openDatabase(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback = null]) native;
- DatabaseSyncJS openDatabaseSync(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback = null]) native;
+ DatabaseSyncJs openDatabaseSync(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback = null]) native;
void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
@@ -51,13 +51,9 @@ class WorkerContextJS implements WorkerContext native "*WorkerContext" {
void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCallback = null, ErrorCallback errorCallback = null]) native;
- DOMFileSystemSyncJS webkitRequestFileSystemSync(int type, int size) native;
+ DOMFileSystemSyncJs webkitRequestFileSystemSync(int type, int size) native;
- EntrySyncJS webkitResolveLocalFileSystemSyncURL(String url) native;
+ EntrySyncJs webkitResolveLocalFileSystemSyncURL(String url) native;
void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallback = null, ErrorCallback errorCallback = null]) native;
-
- var dartObjectLocalStorage;
-
- String get typeName() native;
}
« no previous file with comments | « client/dom/generated/src/frog/Worker.dart ('k') | client/dom/generated/src/frog/WorkerLocation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698