| Index: chrome/browser/media/router/mojo/media_router_mojo_impl.h
|
| diff --git a/chrome/browser/media/router/mojo/media_router_mojo_impl.h b/chrome/browser/media/router/mojo/media_router_mojo_impl.h
|
| index 8f311c9a84260ca91ba3c3d2472c90688953bbed..e2eafe8b66f53cbe0fe37e5a57a5fee59e5d5be8 100644
|
| --- a/chrome/browser/media/router/mojo/media_router_mojo_impl.h
|
| +++ b/chrome/browser/media/router/mojo/media_router_mojo_impl.h
|
| @@ -29,6 +29,7 @@
|
| #include "chrome/common/media_router/issue.h"
|
| #include "chrome/common/media_router/mojo/media_router.mojom.h"
|
| #include "chrome/common/media_router/route_request_result.h"
|
| +#include "content/public/browser/browser_thread.h"
|
| #include "mojo/public/cpp/bindings/binding.h"
|
|
|
| namespace content {
|
| @@ -43,6 +44,7 @@ class Extension;
|
| namespace media_router {
|
|
|
| enum class MediaRouteProviderWakeReason;
|
| +class DialMediaSinkService;
|
|
|
| // MediaRouter implementation that delegates calls to the component extension.
|
| // Also handles the suspension and wakeup of the component extension.
|
| @@ -214,8 +216,8 @@ class MediaRouterMojoImpl : public MediaRouterBase,
|
|
|
| // Standard constructor, used by
|
| // MediaRouterMojoImplFactory::GetApiForBrowserContext.
|
| - explicit MediaRouterMojoImpl(
|
| - extensions::EventPageTracker* event_page_tracker);
|
| + MediaRouterMojoImpl(extensions::EventPageTracker* event_page_tracker,
|
| + content::BrowserContext* context);
|
|
|
| // Binds |this| to a Mojo interface request, so that clients can acquire a
|
| // handle to a MediaRouterMojoImpl instance via the Mojo service connector.
|
| @@ -389,6 +391,9 @@ class MediaRouterMojoImpl : public MediaRouterBase,
|
| void OnFirewallCheckComplete(bool firewall_can_use_local_ports);
|
| #endif
|
|
|
| + // Start browser side sink discovery.
|
| + void StartDiscovery();
|
| +
|
| // Requests MRPM to update media sinks. This allows MRPs that only do
|
| // discovery on sink queries an opportunity to update discovery results
|
| // even if the MRP SinkAvailability is marked UNAVAILABLE.
|
| @@ -459,6 +464,11 @@ class MediaRouterMojoImpl : public MediaRouterBase,
|
| // extension.
|
| std::unordered_map<MediaRoute::Id, MediaRouteController*> route_controllers_;
|
|
|
| + // Media sink service for DIAL devices.
|
| + scoped_refptr<DialMediaSinkService> dial_media_sink_service_;
|
| +
|
| + content::BrowserContext* context_;
|
| +
|
| #if defined(OS_WIN)
|
| // A pair of flags to ensure that mDNS discovery is only enabled on Windows
|
| // when there will be appropriate context for the user to associate a firewall
|
|
|