electron/shell/browser/web_view_manager.cc

52 lines
1.5 KiB
C++
Raw Normal View History

// 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.
#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"
#include "shell/browser/electron_browser_context.h"
2014-10-22 14:55:13 +00:00
namespace electron {
2014-10-22 14:55:13 +00:00
WebViewManager::WebViewManager() = default;
2014-10-22 14:55:13 +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,
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) {
web_contents_embedder_map_.erase(guest_instance_id);
2014-10-23 15:08:48 +00:00
}
2014-10-22 14:55:13 +00:00
bool WebViewManager::ForEachGuest(content::WebContents* embedder_web_contents,
const GuestCallback& callback) {
for (auto& item : web_contents_embedder_map_) {
if (item.second.embedder != embedder_web_contents)
continue;
auto* guest_web_contents = item.second.web_contents;
if (guest_web_contents && callback.Run(guest_web_contents))
2014-10-23 15:08:48 +00:00
return true;
}
2014-10-22 14:55:13 +00:00
return false;
}
// static
2016-05-25 17:20:00 +00:00
WebViewManager* WebViewManager::GetWebViewManager(
content::WebContents* web_contents) {
auto* context = web_contents->GetBrowserContext();
if (context) {
auto* manager = context->GetGuestManager();
2016-05-25 17:22:43 +00:00
return static_cast<WebViewManager*>(manager);
} else {
return nullptr;
}
}
} // namespace electron