| Index: Source/modules/presentation/PresentationController.h
|
| diff --git a/Source/modules/presentation/PresentationController.h b/Source/modules/presentation/PresentationController.h
|
| index cc6c3c2c8ddea430badf6aa252aae53cfad29f81..41cfd0bdde44ba41e8e9fd60b75d530461934caf 100644
|
| --- a/Source/modules/presentation/PresentationController.h
|
| +++ b/Source/modules/presentation/PresentationController.h
|
| @@ -56,6 +56,12 @@ public:
|
| // Called when the frame wants to join an existing presentation.
|
| void joinSession(const String& presentationUrl, const String& presentationId, WebPresentationSessionClientCallbacks*);
|
|
|
| + // Called when the frame wants to send String message to an existing presentation.
|
| + void send(const String& presentationUrl, const String& presentationId, const String& message);
|
| +
|
| + // Called when the frame wants to send ArrayBuffer/View data to an existing presentation.
|
| + void send(const String& presentationUrl, const String& presentationId, const uint8_t* data, size_t length);
|
| +
|
| // Called when the frame wants to close an existing presentation.
|
| void closeSession(const String& url, const String& presentationId);
|
|
|
|
|