Chromium Code Reviews| Index: chrome/browser/extensions/api/tab_capture/offscreen_tab.cc |
| diff --git a/chrome/browser/extensions/api/tab_capture/offscreen_tab.cc b/chrome/browser/extensions/api/tab_capture/offscreen_tab.cc |
| index 776dd0a32817053d059482c3f2e15d8522bef0cc..d5e6e6d6c0e43500ca7b12a83da7f598e91e25c7 100644 |
| --- a/chrome/browser/extensions/api/tab_capture/offscreen_tab.cc |
| +++ b/chrome/browser/extensions/api/tab_capture/offscreen_tab.cc |
| @@ -10,6 +10,7 @@ |
| #include "base/macros.h" |
| #include "base/memory/ptr_util.h" |
| #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry.h" |
| +#include "chrome/browser/media/router/receiver_presentation_service_delegate_impl.h" |
| #include "chrome/browser/profiles/profile.h" |
| #include "chrome/browser/ui/web_contents_sizer.h" |
| #include "content/public/browser/render_view_host.h" |
| @@ -117,11 +118,12 @@ void OffscreenTab::Start(const GURL& start_url, |
| // automatically unmuted, but will be captured into the MediaStream. |
| offscreen_tab_web_contents_->SetAudioMuted(true); |
| - // TODO(imcheng): If |optional_presentation_id| is not empty, register it with |
| - // the PresentationRouter. http://crbug.com/513859 |
| if (!optional_presentation_id.empty()) { |
| - NOTIMPLEMENTED() |
| - << "Register with PresentationRouter, id=" << optional_presentation_id; |
| + DVLOG(1) << " Register with ReceiverPresentationServiceDelegateImpl, id=" |
|
mark a. foltz
2017/01/23 22:29:34
Nit: I've seen [id] used in other log messages. C
zhaobin
2017/01/24 19:28:46
Done.
|
| + << optional_presentation_id; |
| + // Register the offscreen tab as the receiver of the offscreen presentation. |
| + media_router::ReceiverPresentationServiceDelegateImpl::CreateForWebContents( |
| + offscreen_tab_web_contents_.get(), optional_presentation_id); |
| if (auto* render_view_host = |
| offscreen_tab_web_contents_->GetRenderViewHost()) { |