2015-07-16 23:40:01 +02:00
|
|
|
// Copyright (c) 2015 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "libcef/browser/extensions/browser_extensions_util.h"
|
|
|
|
|
2015-11-17 19:20:13 +01:00
|
|
|
#include "libcef/browser/browser_info_manager.h"
|
2015-10-21 20:17:09 +02:00
|
|
|
#include "libcef/browser/thread_util.h"
|
2015-10-12 22:45:14 +02:00
|
|
|
#include "libcef/common/extensions/extensions_util.h"
|
|
|
|
|
2015-07-16 23:40:01 +02:00
|
|
|
#include "content/browser/browser_plugin/browser_plugin_embedder.h"
|
|
|
|
#include "content/browser/browser_plugin/browser_plugin_guest.h"
|
|
|
|
#include "content/browser/web_contents/web_contents_impl.h"
|
2015-08-17 21:48:57 +02:00
|
|
|
#include "content/public/browser/browser_context.h"
|
|
|
|
#include "content/public/browser/browser_plugin_guest_manager.h"
|
2015-07-16 23:40:01 +02:00
|
|
|
|
|
|
|
namespace extensions {
|
|
|
|
|
2015-08-17 21:48:57 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
bool InsertWebContents(std::vector<content::WebContents*>* vector,
|
|
|
|
content::WebContents* web_contents) {
|
|
|
|
vector->push_back(web_contents);
|
|
|
|
return false; // Continue iterating.
|
2015-07-16 23:40:01 +02:00
|
|
|
}
|
|
|
|
|
2015-08-17 21:48:57 +02:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
content::WebContents* GetFullPageGuestForOwnerContents(
|
|
|
|
content::WebContents* owner) {
|
2015-07-16 23:40:01 +02:00
|
|
|
content::WebContentsImpl* owner_impl =
|
|
|
|
static_cast<content::WebContentsImpl*>(owner);
|
2015-08-17 21:48:57 +02:00
|
|
|
content::BrowserPluginEmbedder* plugin_embedder =
|
|
|
|
owner_impl->GetBrowserPluginEmbedder();
|
|
|
|
if (plugin_embedder) {
|
|
|
|
content::BrowserPluginGuest* plugin_guest =
|
|
|
|
plugin_embedder->GetFullPageGuest();
|
|
|
|
if (plugin_guest)
|
|
|
|
return plugin_guest->web_contents();
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetAllGuestsForOwnerContents(content::WebContents* owner,
|
|
|
|
std::vector<content::WebContents*>* guests) {
|
|
|
|
content::BrowserPluginGuestManager* plugin_guest_manager =
|
|
|
|
owner->GetBrowserContext()->GetGuestManager();
|
|
|
|
plugin_guest_manager->ForEachGuest(owner,
|
|
|
|
base::Bind(InsertWebContents, guests));
|
|
|
|
}
|
|
|
|
|
|
|
|
content::WebContents* GetOwnerForGuestContents(content::WebContents* guest) {
|
|
|
|
content::WebContentsImpl* guest_impl =
|
|
|
|
static_cast<content::WebContentsImpl*>(guest);
|
|
|
|
content::BrowserPluginGuest* plugin_guest =
|
|
|
|
guest_impl->GetBrowserPluginGuest();
|
|
|
|
if (plugin_guest)
|
|
|
|
return plugin_guest->embedder_web_contents();
|
2015-07-16 23:40:01 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-01-23 18:36:54 +01:00
|
|
|
CefRefPtr<CefBrowserHostImpl> GetOwnerBrowserForFrame(int render_process_id,
|
|
|
|
int render_routing_id,
|
|
|
|
bool* is_guest_view) {
|
2015-10-21 20:17:09 +02:00
|
|
|
if (CEF_CURRENTLY_ON_UIT()) {
|
|
|
|
// Use the non-thread-safe but potentially faster approach.
|
2017-01-23 18:36:54 +01:00
|
|
|
content::RenderFrameHost* host =
|
|
|
|
content::RenderFrameHost::FromID(render_process_id, render_routing_id);
|
2015-10-21 20:17:09 +02:00
|
|
|
if (host)
|
|
|
|
return GetOwnerBrowserForHost(host, is_guest_view);
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
// Use the thread-safe approach.
|
|
|
|
scoped_refptr<CefBrowserInfo> info =
|
2017-01-23 18:36:54 +01:00
|
|
|
CefBrowserInfoManager::GetInstance()->GetBrowserInfoForFrame(
|
2015-10-21 20:17:09 +02:00
|
|
|
render_process_id, render_routing_id, is_guest_view);
|
|
|
|
if (info.get()) {
|
|
|
|
CefRefPtr<CefBrowserHostImpl> browser = info->browser();
|
|
|
|
if (!browser.get()) {
|
2017-05-17 11:29:28 +02:00
|
|
|
LOG(WARNING) << "Found browser id " << info->browser_id()
|
|
|
|
<< " but no browser object matching view process id "
|
|
|
|
<< render_process_id << " and frame routing id "
|
|
|
|
<< render_routing_id;
|
2015-10-21 20:17:09 +02:00
|
|
|
}
|
|
|
|
return browser;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-10-12 22:45:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefBrowserHostImpl> GetOwnerBrowserForHost(
|
2015-10-21 20:17:09 +02:00
|
|
|
content::RenderViewHost* host,
|
|
|
|
bool* is_guest_view) {
|
|
|
|
if (is_guest_view)
|
|
|
|
*is_guest_view = false;
|
|
|
|
|
2015-10-12 22:45:14 +02:00
|
|
|
CefRefPtr<CefBrowserHostImpl> browser =
|
|
|
|
CefBrowserHostImpl::GetBrowserForHost(host);
|
|
|
|
if (!browser.get() && ExtensionsEnabled()) {
|
|
|
|
// Retrieve the owner browser, if any.
|
|
|
|
content::WebContents* owner = GetOwnerForGuestContents(
|
|
|
|
content::WebContents::FromRenderViewHost(host));
|
2015-10-21 20:17:09 +02:00
|
|
|
if (owner) {
|
2015-10-12 22:45:14 +02:00
|
|
|
browser = CefBrowserHostImpl::GetBrowserForContents(owner);
|
2015-10-21 20:17:09 +02:00
|
|
|
if (browser.get() && is_guest_view)
|
|
|
|
*is_guest_view = true;
|
|
|
|
}
|
2015-10-12 22:45:14 +02:00
|
|
|
}
|
|
|
|
return browser;
|
|
|
|
}
|
|
|
|
|
2017-01-23 18:36:54 +01:00
|
|
|
CefRefPtr<CefBrowserHostImpl> GetOwnerBrowserForHost(
|
|
|
|
content::RenderFrameHost* host,
|
|
|
|
bool* is_guest_view) {
|
|
|
|
if (is_guest_view)
|
|
|
|
*is_guest_view = false;
|
|
|
|
|
|
|
|
CefRefPtr<CefBrowserHostImpl> browser =
|
|
|
|
CefBrowserHostImpl::GetBrowserForHost(host);
|
|
|
|
if (!browser.get() && ExtensionsEnabled()) {
|
|
|
|
// Retrieve the owner browser, if any.
|
|
|
|
content::WebContents* owner = GetOwnerForGuestContents(
|
|
|
|
content::WebContents::FromRenderFrameHost(host));
|
|
|
|
if (owner) {
|
|
|
|
browser = CefBrowserHostImpl::GetBrowserForContents(owner);
|
|
|
|
if (browser.get() && is_guest_view)
|
|
|
|
*is_guest_view = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return browser;
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:40:01 +02:00
|
|
|
} // namespace extensions
|