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

Unified Diff: chrome/browser/media/router/offscreen_presentation_manager_unittest.cc

Issue 2477573002: [Presentation API] (3rd) (1-UA) Split PresentationServiceDelegateImpl(PSDImpl) (Closed)
Patch Set: resolve code review comments from jam Created 4 years 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: chrome/browser/media/router/offscreen_presentation_manager_unittest.cc
diff --git a/chrome/browser/media/router/offscreen_presentation_manager_unittest.cc b/chrome/browser/media/router/offscreen_presentation_manager_unittest.cc
index 6af4ab643ba7141a52ae9bf043009ce3f63d1315..0df02379f4b6814cc1199890d1f2240a50f57ad1 100644
--- a/chrome/browser/media/router/offscreen_presentation_manager_unittest.cc
+++ b/chrome/browser/media/router/offscreen_presentation_manager_unittest.cc
@@ -27,12 +27,12 @@ class MockReceiverConnectionAvailableCallback {
void OnReceiverConnectionAvailable(
const content::PresentationSessionInfo& session_info,
content::PresentationConnectionPtr connection_ptr) {
- OnReceiverConnectionAvailableRaw(session_info, connection_ptr);
+ OnReceiverConnectionAvailableRaw(session_info, connection_ptr.get());
}
MOCK_METHOD2(OnReceiverConnectionAvailableRaw,
void(const content::PresentationSessionInfo&,
- content::PresentationConnectionPtr));
+ blink::mojom::PresentationConnection*));
};
class OffscreenPresentationManagerTest : public ::testing::Test {

Powered by Google App Engine
This is Rietveld 408576698