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

Unified Diff: chrome/browser/media/router/media_router.mojom

Issue 1259073004: [Presentation API] Change ListenForSessionMessages API to client-style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fix Created 5 years, 5 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/browser/media/router/media_router.mojom
diff --git a/chrome/browser/media/router/media_router.mojom b/chrome/browser/media/router/media_router.mojom
index 5311bc8d8088e9af13bd7fca922b10920c1ba909..d51199cc22be70fad7a6b30d9592690dd6682cb7 100644
--- a/chrome/browser/media/router/media_router.mojom
+++ b/chrome/browser/media/router/media_router.mojom
@@ -89,8 +89,6 @@ struct RouteMessage {
TEXT,
BINARY
};
- // The route ID of this message.
- string route_id;
// The type of this message.
Type type;
// Used when the |type| is TEXT.
@@ -158,9 +156,8 @@ interface MediaRouteProvider {
ClearIssue(string issue_id);
// Called when the MediaRouter is ready to get the next batch of messages
- // associated with one of the |route_ids|.
- ListenForRouteMessages(array<string> route_ids)
- => (array<RouteMessage> messages);
+ // associated with |route_id|.
+ ListenForRouteMessages(string route_id) => (array<RouteMessage> messages);
};
// Interface for a service which observes state changes across media

Powered by Google App Engine
This is Rietveld 408576698