| Index: public/platform/modules/presentation/WebPresentationController.h
|
| diff --git a/public/platform/modules/presentation/WebPresentationController.h b/public/platform/modules/presentation/WebPresentationController.h
|
| index a539e577ae9126a9446c70122995789c9c7a03de..efcb8bdf6b03bfc10ae533b48f09caec6101e91d 100644
|
| --- a/public/platform/modules/presentation/WebPresentationController.h
|
| +++ b/public/platform/modules/presentation/WebPresentationController.h
|
| @@ -34,6 +34,12 @@ public:
|
|
|
| // Called when a text message of a session is received.
|
| virtual void didReceiveSessionTextMessage(WebPresentationSessionClient*, const WebString& message) = 0;
|
| +
|
| + // Called when a array buffer message of a session is received.
|
| + virtual void didReceiveSessionArrayBufferMessage(WebPresentationSessionClient*, const uint8_t* data, size_t length) = 0;
|
| +
|
| + // Called when a blob message of a session is received.
|
| + virtual void didReceiveSessionBlobMessage(WebPresentationSessionClient*, const uint8_t* data, size_t length) = 0;
|
| };
|
|
|
| } // namespace blink
|
|
|