| Index: content/browser/presentation/presentation_service_impl.h
|
| diff --git a/content/browser/presentation/presentation_service_impl.h b/content/browser/presentation/presentation_service_impl.h
|
| index 5b4972d62db9046766f396224397e1662c7c8308..d3cda0a81baed749d368656ba9bbce0ddb668d25 100644
|
| --- a/content/browser/presentation/presentation_service_impl.h
|
| +++ b/content/browser/presentation/presentation_service_impl.h
|
| @@ -64,6 +64,7 @@ class CONTENT_EXPORT PresentationServiceImpl
|
| using SessionStateCallback =
|
| mojo::Callback<void(presentation::PresentationSessionInfoPtr,
|
| presentation::PresentationSessionState)>;
|
| + using SendMessageMojoCallback = mojo::Callback<void()>;
|
|
|
| // A helper data class used by PresentationServiceImpl to do bookkeeping
|
| // of currently registered screen availability listeners.
|
| @@ -166,6 +167,9 @@ class CONTENT_EXPORT PresentationServiceImpl
|
| const mojo::String& presentation_url,
|
| const mojo::String& presentation_id,
|
| const NewSessionMojoCallback& callback) override;
|
| + void SendMessage(
|
| + presentation::MessageRequestPtr message_request,
|
| + const SendMessageMojoCallback& callback) override;
|
| void CloseSession(
|
| const mojo::String& presentation_url,
|
| const mojo::String& presentation_id) override;
|
| @@ -207,7 +211,7 @@ class CONTENT_EXPORT PresentationServiceImpl
|
| // and informs the PresentationServiceDelegate of such.
|
| void Reset();
|
|
|
| - // These two functions are bound as base::Callbacks and passed to
|
| + // These functions are bound as base::Callbacks and passed to
|
| // embedder's implementation of PresentationServiceDelegate for later
|
| // invocation.
|
| void OnStartOrJoinSessionSucceeded(
|
|
|