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

Unified Diff: tools/dom/scripts/generator.py

Issue 13444007: Removing all Worker-related APIs (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 | « tests/html/worker_test.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/scripts/generator.py
diff --git a/tools/dom/scripts/generator.py b/tools/dom/scripts/generator.py
index 22589620601924abe9315bb5e848ab8135e906e2..e2a404adf6c6ab53c6e3314ad2565d1410b0e266 100644
--- a/tools/dom/scripts/generator.py
+++ b/tools/dom/scripts/generator.py
@@ -493,10 +493,8 @@ dart2js_conversions = monitored.Dict('generator.dart2js_conversions', {
'any set IDBCursor.update': _serialize_SSV,
# postMessage
- 'any set DedicatedWorkerContext.postMessage': _serialize_SSV,
'any set MessagePort.postMessage': _serialize_SSV,
'SerializedScriptValue set DOMWindow.postMessage': _serialize_SSV,
- 'SerializedScriptValue set Worker.postMessage': _serialize_SSV,
# receiving message via MessageEvent
'* get MessageEvent.data':
@@ -594,7 +592,6 @@ dart2js_annotations = monitored.Dict('generator.dart2js_annotations', {
'DOMWindow.openDatabase': [
"@Creates('SqlDatabase')",
- "@Creates('SqlDatabaseSync')",
],
# To be in callback with the browser-created Event, we had to have called
@@ -898,13 +895,7 @@ dart_annotations = monitored.Dict('generator.dart_annotations', {
'WebKitCSSMatrix': _webkit_experimental_annotations,
'WebKitPoint': _webkit_experimental_annotations,
'WebSocket': _all_but_ie9_annotations,
- 'WorkerContext.indexedDB': _indexed_db_annotations,
- 'WorkerContext.openDatabase': _web_sql_annotations,
- 'WorkerContext.openDatabaseSync': _web_sql_annotations,
- 'WorkerContext.webkitRequestFileSystem': _file_system_annotations,
- 'WorkerContext.webkitRequestFileSystemSync': _file_system_annotations,
- 'WorkerContext.webkitResolveLocalFileSystemSyncURL': _file_system_annotations,
- 'WorkerContext.webkitResolveLocalFileSystemURL': _file_system_annotations,
+ 'Worker': _all_but_ie9_annotations,
'XMLHttpRequest.onloadend': _all_but_ie9_annotations,
'XMLHttpRequest.onprogress': _all_but_ie9_annotations,
'XMLHttpRequest.response': _all_but_ie9_annotations,
« no previous file with comments | « tests/html/worker_test.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698