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

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

Issue 2174693004: [Presentation API] Add support to content/ for multiple URLs per PresentationRequest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update service, dispatcher to use Mojo URLs. Created 4 years, 4 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: 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 3ed4c9864685c9d3327dd87a20b6db6abcbdfe12..4c2fadfb705743cf7ae86ade827b83a0056b2559 100644
--- a/content/browser/presentation/presentation_type_converters_unittest.cc
+++ b/content/browser/presentation/presentation_type_converters_unittest.cc
@@ -16,7 +16,7 @@ TEST(PresentationTypeConvertersTest, PresentationSessionInfo) {
blink::mojom::PresentationSessionInfoPtr session_mojo(
blink::mojom::PresentationSessionInfo::From(session));
EXPECT_FALSE(session_mojo.is_null());
- EXPECT_EQ(presentation_url, session_mojo->url);
+ EXPECT_EQ(presentation_url, session_mojo->url->url);
EXPECT_EQ(presentation_id, session_mojo->id);
}

Powered by Google App Engine
This is Rietveld 408576698