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

Unified Diff: third_party/WebKit/public/platform/modules/broadcastchannel/broadcast_channel.mojom

Issue 2171843002: Use array<uint8> rather than string to pass BroadcastChannel messages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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: third_party/WebKit/public/platform/modules/broadcastchannel/broadcast_channel.mojom
diff --git a/third_party/WebKit/public/platform/modules/broadcastchannel/broadcast_channel.mojom b/third_party/WebKit/public/platform/modules/broadcastchannel/broadcast_channel.mojom
index af0d38209b7ee6633840b99390ea6f345a611bc7..857acf56a818a6418389994fc1c8703e1e278b53 100644
--- a/third_party/WebKit/public/platform/modules/broadcastchannel/broadcast_channel.mojom
+++ b/third_party/WebKit/public/platform/modules/broadcastchannel/broadcast_channel.mojom
@@ -12,7 +12,7 @@ import "url/mojo/origin.mojom";
// in the renderer for messages from the browser to the renderer.
interface BroadcastChannelClient {
// Messages are passed as SerializedScriptValue.
- OnMessage(string message);
+ OnMessage(array<uint8> message);
};
// This interface is used to set up connections to broadcast channels. All

Powered by Google App Engine
This is Rietveld 408576698