2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-10-22 22:55:13 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_WEB_VIEW_MANAGER_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_WEB_VIEW_MANAGER_H_
|
2014-10-22 22:55:13 +08:00
|
|
|
|
2024-01-05 05:18:31 -06:00
|
|
|
#include "base/containers/flat_map.h"
|
2023-05-11 16:07:39 -04:00
|
|
|
#include "base/memory/raw_ptr.h"
|
2014-10-22 22:55:13 +08:00
|
|
|
#include "content/public/browser/browser_plugin_guest_manager.h"
|
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
class WebViewManager : public content::BrowserPluginGuestManager {
|
|
|
|
public:
|
2015-09-05 11:43:30 +09:00
|
|
|
WebViewManager();
|
|
|
|
~WebViewManager() override;
|
2015-02-04 15:08:29 -08:00
|
|
|
|
2021-11-03 12:41:45 +01:00
|
|
|
// disable copy
|
|
|
|
WebViewManager(const WebViewManager&) = delete;
|
|
|
|
WebViewManager& operator=(const WebViewManager&) = delete;
|
|
|
|
|
2014-10-23 23:08:48 +08:00
|
|
|
void AddGuest(int guest_instance_id,
|
|
|
|
content::WebContents* embedder,
|
2015-09-03 06:17:58 +05:30
|
|
|
content::WebContents* web_contents);
|
2014-10-23 23:08:48 +08:00
|
|
|
void RemoveGuest(int guest_instance_id);
|
2016-05-25 10:13:12 -07:00
|
|
|
|
|
|
|
static WebViewManager* GetWebViewManager(content::WebContents* web_contents);
|
|
|
|
|
2014-10-22 22:55:13 +08:00
|
|
|
// content::BrowserPluginGuestManager:
|
2014-12-09 14:38:43 -08:00
|
|
|
bool ForEachGuest(content::WebContents* embedder,
|
2023-11-28 13:40:12 -08:00
|
|
|
base::FunctionRef<bool(content::WebContents*)> fn) override;
|
2014-10-22 22:55:13 +08:00
|
|
|
|
|
|
|
private:
|
2014-10-23 23:08:48 +08:00
|
|
|
struct WebContentsWithEmbedder {
|
2023-05-11 16:07:39 -04:00
|
|
|
raw_ptr<content::WebContents> web_contents;
|
|
|
|
raw_ptr<content::WebContents> embedder;
|
2014-10-23 23:08:48 +08:00
|
|
|
};
|
2015-02-04 15:28:26 -08:00
|
|
|
// guest_instance_id => (web_contents, embedder)
|
2024-01-05 05:18:31 -06:00
|
|
|
base::flat_map<int, WebContentsWithEmbedder> web_contents_embedder_map_;
|
2014-10-22 22:55:13 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_WEB_VIEW_MANAGER_H_
|