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

Unified Diff: content/browser/presentation/presentation_type_converters_unittest.cc

Issue 2471883002: [Presentation API] (1st) (1-UA) Add is_offscreen_presentation attribute to MediaRouter (Closed)
Patch Set: resolve code review comments from Mark Created 4 years, 1 month 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: content/browser/presentation/presentation_type_converters_unittest.cc
diff --git a/content/browser/presentation/presentation_type_converters_unittest.cc b/content/browser/presentation/presentation_type_converters_unittest.cc
index e3f462363f94ed7bf3bd944943bf6209d6fed8cd..11c6c838b1ebfc92b3e1763eabccab33a1e5133d 100644
--- a/content/browser/presentation/presentation_type_converters_unittest.cc
+++ b/content/browser/presentation/presentation_type_converters_unittest.cc
@@ -12,7 +12,7 @@ namespace content {
TEST(PresentationTypeConvertersTest, PresentationSessionInfo) {
GURL presentation_url("http://www.example.com/");
std::string presentation_id("presentationId");
- PresentationSessionInfo session(presentation_url, presentation_id);
+ PresentationSessionInfo session(presentation_url, presentation_id, false);
blink::mojom::PresentationSessionInfoPtr session_mojo(
blink::mojom::PresentationSessionInfo::From(session));
EXPECT_FALSE(session_mojo.is_null());

Powered by Google App Engine
This is Rietveld 408576698