| Index: chrome/browser/media/router/media_router_mojo_impl.h
|
| diff --git a/chrome/browser/media/router/media_router_mojo_impl.h b/chrome/browser/media/router/media_router_mojo_impl.h
|
| index f3bd8e36cf3be186f53f9e8e7592c53b017d6b3f..3d742274718aa0cb5858aee1fe5bc3e8d824e5cf 100644
|
| --- a/chrome/browser/media/router/media_router_mojo_impl.h
|
| +++ b/chrome/browser/media/router/media_router_mojo_impl.h
|
| @@ -63,8 +63,9 @@ class MediaRouterMojoImpl : public MediaRouter,
|
| const MediaSink::Id& sink_id,
|
| const MediaRouteResponseCallback& callback) override;
|
| void CloseRoute(const MediaRoute::Id& route_id) override;
|
| - void PostMessage(const MediaRoute::Id& route_id,
|
| - const std::string& message) override;
|
| + void SendMessage(const MediaRoute::Id& route_id,
|
| + const std::string& message,
|
| + const SendMessageCallback& callback) override;
|
| void ClearIssue(const Issue::Id& issue_id) override;
|
| void RegisterMediaSinksObserver(MediaSinksObserver* observer) override;
|
| void UnregisterMediaSinksObserver(MediaSinksObserver* observer) override;
|
| @@ -112,7 +113,8 @@ class MediaRouterMojoImpl : public MediaRouter,
|
| const MediaRouteResponseCallback& callback);
|
| void DoCloseRoute(const MediaRoute::Id& route_id);
|
| void DoPostMessage(const MediaRoute::Id& route_id,
|
| - const std::string& message);
|
| + const std::string& message,
|
| + const SendMessageCallback& callback);
|
| void DoClearIssue(const Issue::Id& issue_id);
|
| void DoStartObservingMediaSinks(const std::string& source_id);
|
| void DoStopObservingMediaSinks(const std::string& source_id);
|
|
|