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..fde2823181ee87b64d6c26a57527c5f9fd58c51e 100644 |
--- a/content/browser/presentation/presentation_type_converters_unittest.cc |
+++ b/content/browser/presentation/presentation_type_converters_unittest.cc |
@@ -10,9 +10,9 @@ |
namespace content { |
TEST(PresentationTypeConvertersTest, PresentationSessionInfo) { |
- std::string presentation_url("http://fooUrl"); |
+ GURL presentation_url("http://fooUrl"); |
std::string presentation_id("presentationId"); |
- PresentationSessionInfo session(presentation_url, presentation_id); |
+ PresentationSessionInfo session(presentation_url.spec(), presentation_id); |
blink::mojom::PresentationSessionInfoPtr session_mojo( |
blink::mojom::PresentationSessionInfo::From(session)); |
EXPECT_FALSE(session_mojo.is_null()); |