2017-08-04 00:55:19 +02:00
|
|
|
// Copyright 2017 the Chromium Embedded Framework Authors. Portions copyright
|
|
|
|
// 2014 The Chromium Authors. All rights reserved. Use of this source code is
|
|
|
|
// governed by a BSD-style license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef LIBCEF_BROWSER_EXTENSIONS_EXTENSION_HOST_DELEGATE_H_
|
|
|
|
#define LIBCEF_BROWSER_EXTENSIONS_EXTENSION_HOST_DELEGATE_H_
|
|
|
|
|
|
|
|
#include "extensions/browser/extension_host_delegate.h"
|
|
|
|
|
2020-09-22 21:54:02 +02:00
|
|
|
class AlloyBrowserHostImpl;
|
2017-08-04 00:55:19 +02:00
|
|
|
|
|
|
|
namespace extensions {
|
|
|
|
|
|
|
|
class CefExtensionHostDelegate : public ExtensionHostDelegate {
|
|
|
|
public:
|
2020-09-22 21:54:02 +02:00
|
|
|
explicit CefExtensionHostDelegate(AlloyBrowserHostImpl* browser);
|
2021-12-06 21:40:25 +01:00
|
|
|
|
|
|
|
CefExtensionHostDelegate(const CefExtensionHostDelegate&) = delete;
|
|
|
|
CefExtensionHostDelegate& operator=(const CefExtensionHostDelegate&) = delete;
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
~CefExtensionHostDelegate() override;
|
|
|
|
|
|
|
|
// ExtensionHostDelegate implementation.
|
|
|
|
void OnExtensionHostCreated(content::WebContents* web_contents) override;
|
2021-03-04 23:36:57 +01:00
|
|
|
void OnMainFrameCreatedForBackgroundPage(ExtensionHost* host) override;
|
2017-08-04 00:55:19 +02:00
|
|
|
content::JavaScriptDialogManager* GetJavaScriptDialogManager() override;
|
2018-05-18 12:45:18 +02:00
|
|
|
void CreateTab(std::unique_ptr<content::WebContents> web_contents,
|
2017-08-04 00:55:19 +02:00
|
|
|
const std::string& extension_id,
|
|
|
|
WindowOpenDisposition disposition,
|
2023-02-27 19:52:38 +01:00
|
|
|
const blink::mojom::WindowFeatures& window_features,
|
2017-08-04 00:55:19 +02:00
|
|
|
bool user_gesture) override;
|
|
|
|
void ProcessMediaAccessRequest(content::WebContents* web_contents,
|
|
|
|
const content::MediaStreamRequest& request,
|
2018-06-19 00:08:20 +02:00
|
|
|
content::MediaResponseCallback callback,
|
2017-08-04 00:55:19 +02:00
|
|
|
const Extension* extension) override;
|
2018-04-19 17:44:42 +02:00
|
|
|
bool CheckMediaAccessPermission(content::RenderFrameHost* render_frame_host,
|
2023-12-06 21:16:15 +01:00
|
|
|
const url::Origin& security_origin,
|
2019-09-04 17:13:32 +02:00
|
|
|
blink::mojom::MediaStreamType type,
|
2017-08-04 00:55:19 +02:00
|
|
|
const Extension* extension) override;
|
2019-09-04 17:13:32 +02:00
|
|
|
content::PictureInPictureResult EnterPictureInPicture(
|
2022-02-21 23:23:40 +01:00
|
|
|
content::WebContents* web_contents) override;
|
2018-09-04 11:43:21 +02:00
|
|
|
void ExitPictureInPicture() override;
|
2017-08-04 00:55:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace extensions
|
|
|
|
|
|
|
|
#endif // LIBCEF_BROWSER_EXTENSIONS_EXTENSION_HOST_DELEGATE_H_
|