2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-10-22 14:55:13 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/web_view_manager.h"
|
2014-10-22 14:55:13 +00:00
|
|
|
|
2016-05-25 17:28:35 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/electron_browser_context.h"
|
2014-10-22 14:55:13 +00:00
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
WebViewManager::WebViewManager() = default;
|
2014-10-22 14:55:13 +00:00
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
WebViewManager::~WebViewManager() = default;
|
2014-10-22 14:55:13 +00:00
|
|
|
|
2014-10-23 15:08:48 +00:00
|
|
|
void WebViewManager::AddGuest(int guest_instance_id,
|
|
|
|
content::WebContents* embedder,
|
2015-09-03 00:47:58 +00:00
|
|
|
content::WebContents* web_contents) {
|
2018-04-18 01:55:30 +00:00
|
|
|
web_contents_embedder_map_[guest_instance_id] = {web_contents, embedder};
|
2014-10-23 15:08:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WebViewManager::RemoveGuest(int guest_instance_id) {
|
2021-05-04 13:59:44 +00:00
|
|
|
web_contents_embedder_map_.erase(guest_instance_id);
|
2014-10-23 15:08:48 +00:00
|
|
|
}
|
|
|
|
|
2023-11-28 21:40:12 +00:00
|
|
|
bool WebViewManager::ForEachGuest(
|
|
|
|
content::WebContents* embedder_web_contents,
|
|
|
|
base::FunctionRef<bool(content::WebContents*)> fn) {
|
2019-11-07 15:39:48 +00:00
|
|
|
for (auto& item : web_contents_embedder_map_) {
|
|
|
|
if (item.second.embedder != embedder_web_contents)
|
|
|
|
continue;
|
|
|
|
|
2023-05-11 20:07:39 +00:00
|
|
|
content::WebContents* guest_web_contents = item.second.web_contents;
|
2023-11-28 21:40:12 +00:00
|
|
|
if (guest_web_contents && fn(guest_web_contents))
|
2014-10-23 15:08:48 +00:00
|
|
|
return true;
|
2019-11-07 15:39:48 +00:00
|
|
|
}
|
2014-10-22 14:55:13 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-05-25 17:13:12 +00:00
|
|
|
// static
|
2016-05-25 17:20:00 +00:00
|
|
|
WebViewManager* WebViewManager::GetWebViewManager(
|
|
|
|
content::WebContents* web_contents) {
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* context = web_contents->GetBrowserContext();
|
2016-05-25 17:13:12 +00:00
|
|
|
if (context) {
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* manager = context->GetGuestManager();
|
2016-05-25 17:22:43 +00:00
|
|
|
return static_cast<WebViewManager*>(manager);
|
2016-05-25 17:13:12 +00:00
|
|
|
} else {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-22 14:55:13 +00:00
|
|
|
} // namespace electron
|