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

Unified Diff: chrome/browser/media/router/media_route.cc

Issue 1314413005: [Presentation API] 1-UA presentation support + presenter APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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_route.cc
diff --git a/chrome/browser/media/router/media_route.cc b/chrome/browser/media/router/media_route.cc
index fb2d65e9dbfcdf9e382cd213bb0b24b47899415b..ee82c2557418bcddd414557214903ede1f54653b 100644
--- a/chrome/browser/media/router/media_route.cc
+++ b/chrome/browser/media/router/media_route.cc
@@ -15,14 +15,16 @@ MediaRoute::MediaRoute(const MediaRoute::Id& media_route_id,
const std::string& description,
bool is_local,
const std::string& custom_controller_path,
- bool for_display)
+ bool for_display,
+ bool is_offscreen_presentation)
: media_route_id_(media_route_id),
media_source_(media_source),
media_sink_id_(media_sink_id),
description_(description),
is_local_(is_local),
custom_controller_path_(custom_controller_path),
- for_display_(for_display) {}
+ for_display_(for_display),
+ is_offscreen_presentation_(is_offscreen_presentation) {}
MediaRoute::~MediaRoute() {
}

Powered by Google App Engine
This is Rietveld 408576698