Chromium Code Reviews| Index: Source/modules/presentation/PresentationController.cpp |
| diff --git a/Source/modules/presentation/PresentationController.cpp b/Source/modules/presentation/PresentationController.cpp |
| index 47d8ae9b4584071834c2525a4933d1ef5ee070af..b038520c2037c8e2040412210a6d3b592382d4b1 100644 |
| --- a/Source/modules/presentation/PresentationController.cpp |
| +++ b/Source/modules/presentation/PresentationController.cpp |
| @@ -112,6 +112,20 @@ void PresentationController::joinSession(const String& presentationUrl, const St |
| m_client->joinSession(presentationUrl, presentationId, callbacks); |
| } |
| +void PresentationController::postMessage(const String& url, const String& presentationId, const String& message) |
|
mark a. foltz
2015/04/02 20:26:39
send()
USE s.singapati at gmail.com
2015/04/07 15:49:00
Done.
|
| +{ |
| + if (!m_client) |
| + return; |
| + m_client->postMessage(url, presentationId, message); |
| +} |
| + |
| +void PresentationController::postMessage(const String& url, const String& presentationId, const char* data, size_t length) |
|
mark a. foltz
2015/04/02 20:26:39
send()
USE s.singapati at gmail.com
2015/04/07 15:48:59
Done.
|
| +{ |
| + if (!m_client) |
| + return; |
| + m_client->postMessage(url, presentationId, data, length); |
| +} |
| + |
| void PresentationController::closeSession(const String& url, const String& presentationId) |
| { |
| if (!m_client) |