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

Unified Diff: client/dom/generated/src/wrapping/_WorkerWrappingImplementation.dart

Issue 9264057: Refresh dart:dom libraries from WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't re-implement List<>, causes code that dartc rejects due to static 'override' 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/wrapping/_WorkerWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_WorkerWrappingImplementation.dart b/client/dom/generated/src/wrapping/_WorkerWrappingImplementation.dart
index 28bd5884b493dc6f8e6c55b5f60dac056d910357..392b56c3d48c0e1f845903192ccdf2bab27f7ef1 100644
--- a/client/dom/generated/src/wrapping/_WorkerWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_WorkerWrappingImplementation.dart
@@ -11,7 +11,7 @@ class _WorkerWrappingImplementation extends _AbstractWorkerWrappingImplementatio
return new _WorkerWrappingImplementation();
}
- void postMessage(String message, [List messagePorts = null]) {
+ void postMessage(Dynamic/*SerializedScriptValue*/ message, [List messagePorts = null]) {
if (messagePorts === null) {
_postMessage(this, message);
return;
@@ -29,7 +29,7 @@ class _WorkerWrappingImplementation extends _AbstractWorkerWrappingImplementatio
}
static void _terminate(receiver) native;
- void webkitPostMessage(String message, [List messagePorts = null]) {
+ void webkitPostMessage(Dynamic/*SerializedScriptValue*/ message, [List messagePorts = null]) {
if (messagePorts === null) {
_webkitPostMessage(this, message);
return;

Powered by Google App Engine
This is Rietveld 408576698