Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2716)

Unified Diff: chrome/common/media_router/mojo/media_router.mojom

Issue 2873893003: [Media Router] Add features to control browser side discovery (Closed)
Patch Set: resolve code review comments from Mark Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/media_router/mojo/media_router.mojom
diff --git a/chrome/common/media_router/mojo/media_router.mojom b/chrome/common/media_router/mojo/media_router.mojom
index f1c657680314510c0ed740c22ce65c529ea58093..d339c5c7931f13aef17d31cd66ad78e49a299266 100644
--- a/chrome/common/media_router/mojo/media_router.mojom
+++ b/chrome/common/media_router/mojo/media_router.mojom
@@ -187,6 +187,16 @@ enum RouteRequestResultCode {
// New values must be added here.
};
+// Used to pass feature configuration data from the Browser to Media Route
+// Provider.
+struct MediaRouteProviderConfig {
+ // If the MRP should enable DIAL discovery.
+ bool enable_dial_discovery;
+
+ // If the MRP should enable Cast discovery.
+ bool enable_cast_discovery;
+};
+
// Modeled after the MediaRouter interface defined in
// chrome/browser/media/router/media_router.h
interface MediaRouteProvider {
@@ -423,7 +433,7 @@ interface MediaRouter {
// Returns a string that uniquely identifies the Media Router browser
// process.
RegisterMediaRouteProvider(MediaRouteProvider media_router_provider) =>
- (string instance_id);
+ (string instance_id, MediaRouteProviderConfig config);
// Called when the Media Route Manager receives a new list of |sinks|
// compatible with |media_source|. The result is only valid for |origins|. If

Powered by Google App Engine
This is Rietveld 408576698