| Index: content/public/browser/content_browser_client.h
|
| diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
|
| index 96946a06bac2747889a3d4ad24e0346b69dd07fb..9117b981fea2412196e17e854d8dc5102d94474c 100644
|
| --- a/content/public/browser/content_browser_client.h
|
| +++ b/content/public/browser/content_browser_client.h
|
| @@ -105,6 +105,7 @@ class BrowserMainParts;
|
| class BrowserPpapiHost;
|
| class BrowserURLHandler;
|
| class ClientCertificateDelegate;
|
| +class ControllerPresentationServiceDelegate;
|
| class DevToolsManagerDelegate;
|
| class GpuProcessHost;
|
| class MediaObserver;
|
| @@ -112,8 +113,8 @@ class MemoryCoordinatorDelegate;
|
| class NavigationHandle;
|
| class NavigationUIData;
|
| class PlatformNotificationService;
|
| -class PresentationServiceDelegate;
|
| class QuotaPermissionContext;
|
| +class ReceiverPresentationServiceDelegate;
|
| class RenderFrameHost;
|
| class RenderProcessHost;
|
| class RenderViewHost;
|
| @@ -713,10 +714,15 @@ class CONTENT_EXPORT ContentBrowserClient {
|
| RenderFrameHost* render_frame_host,
|
| blink::WebPageVisibilityState* visibility_state) {}
|
|
|
| - // Allows an embedder to provide its own PresentationServiceDelegate
|
| + // Allows an embedder to provide its own ControllerPresentationServiceDelegate
|
| // implementation. Returns nullptr if unavailable.
|
| - virtual PresentationServiceDelegate* GetPresentationServiceDelegate(
|
| - WebContents* web_contents);
|
| + virtual ControllerPresentationServiceDelegate*
|
| + GetControllerPresentationServiceDelegate(WebContents* web_contents);
|
| +
|
| + // Allows an embedder to provide its own ReceiverPresentationServiceDelegate
|
| + // implementation. Returns nullptr if unavailable.
|
| + virtual ReceiverPresentationServiceDelegate*
|
| + GetReceiverPresentationServiceDelegate(WebContents* web_contents);
|
|
|
| // Allows programmatic opening of a new tab/window without going through
|
| // another WebContents. For example, from a Worker. |callback| will be
|
|
|