| 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..6a4951351d3a646ba5f09ae743c7f14bcb464f35 100644
|
| --- a/content/browser/presentation/presentation_type_converters_unittest.cc
|
| +++ b/content/browser/presentation/presentation_type_converters_unittest.cc
|
| @@ -13,8 +13,8 @@ TEST(PresentationTypeConvertersTest, PresentationSessionInfo) {
|
| GURL presentation_url("http://www.example.com/");
|
| std::string presentation_id("presentationId");
|
| PresentationSessionInfo session(presentation_url, presentation_id);
|
| - blink::mojom::PresentationSessionInfoPtr session_mojo(
|
| - blink::mojom::PresentationSessionInfo::From(session));
|
| + content::mojom::PresentationSessionInfoPtr session_mojo(
|
| + content::mojom::PresentationSessionInfo::From(session));
|
| EXPECT_FALSE(session_mojo.is_null());
|
| EXPECT_EQ(presentation_url, session_mojo->url);
|
| EXPECT_EQ(presentation_id, session_mojo->id);
|
| @@ -23,10 +23,10 @@ TEST(PresentationTypeConvertersTest, PresentationSessionInfo) {
|
| TEST(PresentationTypeConvertersTest, PresentationError) {
|
| std::string message("Error message");
|
| PresentationError error(PRESENTATION_ERROR_NO_AVAILABLE_SCREENS, message);
|
| - blink::mojom::PresentationErrorPtr error_mojo(
|
| - blink::mojom::PresentationError::From(error));
|
| + content::mojom::PresentationErrorPtr error_mojo(
|
| + content::mojom::PresentationError::From(error));
|
| EXPECT_FALSE(error_mojo.is_null());
|
| - EXPECT_EQ(blink::mojom::PresentationErrorType::NO_AVAILABLE_SCREENS,
|
| + EXPECT_EQ(content::mojom::PresentationErrorType::NO_AVAILABLE_SCREENS,
|
| error_mojo->error_type);
|
| EXPECT_EQ(message, error_mojo->message);
|
| }
|
|
|