| Index: content/common/presentation/presentation_service.mojom
|
| diff --git a/content/common/presentation/presentation_service.mojom b/content/common/presentation/presentation_service.mojom
|
| index bc06725ceca237b3c4bf22c88fb3f3e3ad73a305..d033a482cb80d280926902f9261a8e850ebbc8f2 100644
|
| --- a/content/common/presentation/presentation_service.mojom
|
| +++ b/content/common/presentation/presentation_service.mojom
|
| @@ -29,13 +29,16 @@ struct PresentationError {
|
| enum PresentationMessageType {
|
| TEXT,
|
| ARRAY_BUFFER,
|
| + BLOB,
|
| };
|
|
|
| struct SessionMessage {
|
| string presentation_url;
|
| string presentation_id;
|
| PresentationMessageType type;
|
| + // Used when message type is TEXT.
|
| string? message;
|
| + // Used when message type is ARRAY_BUFFER or BLOB.
|
| array<uint8>? data;
|
| };
|
|
|
|
|