/// Copyright (c) 2012 The Chromium Embedded Framework Authors. // Portions (c) 2011 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. #include "libcef/browser/browser_message_filter.h" #include "libcef/browser/browser_host_impl.h" #include "libcef/browser/browser_info.h" #include "libcef/browser/content_browser_client.h" #include "libcef/browser/context.h" #include "libcef/browser/origin_whitelist_impl.h" #include "libcef/browser/thread_util.h" #include "libcef/common/cef_messages.h" #include "libcef/common/content_client.h" #include "libcef/common/values_impl.h" #include "base/compiler_specific.h" #include "base/bind.h" #include "content/common/view_messages.h" #include "content/public/browser/render_process_host.h" CefBrowserMessageFilter::CefBrowserMessageFilter( content::RenderProcessHost* host) : host_(host), channel_(NULL) { } CefBrowserMessageFilter::~CefBrowserMessageFilter() { } void CefBrowserMessageFilter::OnFilterAdded(IPC::Channel* channel) { channel_ = channel; } void CefBrowserMessageFilter::OnFilterRemoved() { } bool CefBrowserMessageFilter::OnMessageReceived(const IPC::Message& message) { bool handled = true; if (message.type() == ViewHostMsg_CreateWindow::ID) { // Observe but don't handle this message. handled = false; } IPC_BEGIN_MESSAGE_MAP(CefBrowserMessageFilter, message) IPC_MESSAGE_HANDLER(CefProcessHostMsg_GetNewRenderThreadInfo, OnGetNewRenderThreadInfo) IPC_MESSAGE_HANDLER(CefProcessHostMsg_GetNewBrowserInfo, OnGetNewBrowserInfo) IPC_MESSAGE_HANDLER_DELAY_REPLY(ViewHostMsg_CreateWindow, OnCreateWindow) IPC_MESSAGE_UNHANDLED(handled = false) IPC_END_MESSAGE_MAP() return handled; } bool CefBrowserMessageFilter::Send(IPC::Message* message) { return host_->Send(message); } void CefBrowserMessageFilter::OnGetNewRenderThreadInfo( CefProcessHostMsg_GetNewRenderThreadInfo_Params* params) { GetCrossOriginWhitelistEntries(¶ms->cross_origin_whitelist_entries); CefRefPtr app = CefContentClient::Get()->application(); if (app.get()) { CefRefPtr handler = app->GetBrowserProcessHandler(); if (handler.get()) { CefRefPtr listValuePtr( new CefListValueImpl(¶ms->extra_info, false, false)); handler->OnRenderProcessThreadCreated(listValuePtr.get()); listValuePtr->Detach(NULL); } } } void CefBrowserMessageFilter::OnGetNewBrowserInfo( int routing_id, CefProcessHostMsg_GetNewBrowserInfo_Params* params) { // Popup windows may not have info yet. scoped_refptr info = CefContentBrowserClient::Get()->GetOrCreateBrowserInfo(host_->GetID(), routing_id); params->browser_id = info->browser_id(); params->is_popup = info->is_popup(); params->is_window_rendering_disabled = info->is_window_rendering_disabled(); } void CefBrowserMessageFilter::OnCreateWindow( const ViewHostMsg_CreateWindow_Params& params, IPC::Message* reply_msg) { CefContentBrowserClient::LastCreateWindowParams lcwp; lcwp.opener_process_id = host_->GetID(); lcwp.opener_view_id = params.opener_id; lcwp.opener_frame_id = params.opener_frame_id; lcwp.target_url = params.target_url; lcwp.target_frame_name = params.frame_name; CefContentBrowserClient::Get()->set_last_create_window_params(lcwp); // Reply message is not used. delete reply_msg; }