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

Unified Diff: content/renderer/presentation/presentation_dispatcher_unittest.cc

Issue 2622993002: [Presentation API] Move presentation.mojom to content/common/presentation (Closed)
Patch Set: Fix presentation_service_delegate. DEPS failure Created 3 years, 11 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/renderer/presentation/presentation_dispatcher_unittest.cc
diff --git a/content/renderer/presentation/presentation_dispatcher_unittest.cc b/content/renderer/presentation/presentation_dispatcher_unittest.cc
index 3ec39bad8cd51ee6b66bc56ec12a3a9884f99231..d6995930f8055ff79f89dcd210cee988a7fb2c88 100644
--- a/content/renderer/presentation/presentation_dispatcher_unittest.cc
+++ b/content/renderer/presentation/presentation_dispatcher_unittest.cc
@@ -25,16 +25,16 @@ using blink::WebPresentationSessionInfo;
using blink::WebString;
using blink::WebURL;
using blink::WebVector;
-using blink::mojom::PresentationConnection;
-using blink::mojom::PresentationError;
-using blink::mojom::PresentationErrorPtr;
-using blink::mojom::PresentationErrorType;
-using blink::mojom::PresentationService;
-using blink::mojom::PresentationServiceClientPtr;
-using blink::mojom::PresentationSessionInfo;
-using blink::mojom::PresentationSessionInfoPtr;
-using blink::mojom::ConnectionMessage;
-using blink::mojom::ConnectionMessagePtr;
+using content::mojom::PresentationConnection;
+using content::mojom::PresentationError;
+using content::mojom::PresentationErrorPtr;
+using content::mojom::PresentationErrorType;
+using content::mojom::PresentationService;
+using content::mojom::PresentationServiceClientPtr;
+using content::mojom::PresentationSessionInfo;
+using content::mojom::PresentationSessionInfoPtr;
+using content::mojom::ConnectionMessage;
+using content::mojom::ConnectionMessagePtr;
// TODO(crbug.com/576808): Add test cases for the following:
// - State changes
@@ -105,9 +105,9 @@ class MockPresentationService : public PresentationService {
void(PresentationSessionInfo* session_info));
void SetPresentationConnection(
- blink::mojom::PresentationSessionInfoPtr session,
- blink::mojom::PresentationConnectionPtr controller_conn_ptr,
- blink::mojom::PresentationConnectionRequest receiver_conn_request)
+ content::mojom::PresentationSessionInfoPtr session,
+ content::mojom::PresentationConnectionPtr controller_conn_ptr,
+ content::mojom::PresentationConnectionRequest receiver_conn_request)
override {
SetPresentationConnection(session.get(), controller_conn_ptr.get());
}

Powered by Google App Engine
This is Rietveld 408576698