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

Unified Diff: content/public/browser/content_browser_client.cc

Issue 2477573002: [Presentation API] (3rd) (1-UA) Split PresentationServiceDelegateImpl(PSDImpl) (Closed)
Patch Set: merge with master 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: content/public/browser/content_browser_client.cc
diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
index f6c8cdb4fb25e623bfd708d7ab99cbec26679ddb..9bf017171c343fc46e9173babd2be89324331b34 100644
--- a/content/public/browser/content_browser_client.cc
+++ b/content/public/browser/content_browser_client.cc
@@ -384,8 +384,14 @@ std::string ContentBrowserClient::GetServiceUserIdForBrowserContext(
return base::GenerateGUID();
}
-PresentationServiceDelegate*
-ContentBrowserClient::GetPresentationServiceDelegate(
+ControllerPresentationServiceDelegate*
+ContentBrowserClient::GetControllerPresentationServiceDelegate(
+ WebContents* web_contents) {
+ return nullptr;
+}
+
+ReceiverPresentationServiceDelegate*
+ContentBrowserClient::GetReceiverPresentationServiceDelegate(
WebContents* web_contents) {
return nullptr;
}

Powered by Google App Engine
This is Rietveld 408576698