2012-04-03 03:34:16 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors.
|
|
|
|
// Portions copyright (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/renderer/browser_impl.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "libcef/common/cef_messages.h"
|
|
|
|
#include "libcef/common/content_client.h"
|
|
|
|
#include "libcef/common/process_message_impl.h"
|
2015-12-01 19:22:28 +01:00
|
|
|
#include "libcef/common/request_impl.h"
|
2012-05-18 23:18:01 +02:00
|
|
|
#include "libcef/common/response_manager.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "libcef/renderer/content_renderer_client.h"
|
2012-06-11 17:52:49 +02:00
|
|
|
#include "libcef/renderer/dom_document_impl.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "libcef/renderer/thread_util.h"
|
|
|
|
#include "libcef/renderer/webkit_glue.h"
|
|
|
|
|
2013-06-22 04:06:32 +02:00
|
|
|
#include "base/strings/string16.h"
|
|
|
|
#include "base/strings/string_util.h"
|
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "content/public/renderer/document_state.h"
|
|
|
|
#include "content/public/renderer/navigation_state.h"
|
|
|
|
#include "content/public/renderer/render_view.h"
|
2015-03-19 23:06:16 +01:00
|
|
|
#include "content/renderer/navigation_state_impl.h"
|
2013-09-13 01:36:54 +02:00
|
|
|
#include "content/renderer/render_view_impl.h"
|
2013-06-22 04:06:32 +02:00
|
|
|
#include "third_party/WebKit/public/platform/WebString.h"
|
|
|
|
#include "third_party/WebKit/public/platform/WebURL.h"
|
2013-09-13 01:36:54 +02:00
|
|
|
#include "third_party/WebKit/public/platform/WebURLError.h"
|
2013-06-22 04:06:32 +02:00
|
|
|
#include "third_party/WebKit/public/platform/WebURLResponse.h"
|
|
|
|
#include "third_party/WebKit/public/web/WebDataSource.h"
|
|
|
|
#include "third_party/WebKit/public/web/WebDocument.h"
|
|
|
|
#include "third_party/WebKit/public/web/WebFrame.h"
|
2014-04-30 19:14:40 +02:00
|
|
|
#include "third_party/WebKit/public/web/WebLocalFrame.h"
|
2013-06-22 04:06:32 +02:00
|
|
|
#include "third_party/WebKit/public/web/WebNode.h"
|
|
|
|
#include "third_party/WebKit/public/web/WebScriptSource.h"
|
|
|
|
#include "third_party/WebKit/public/web/WebSecurityPolicy.h"
|
|
|
|
#include "third_party/WebKit/public/web/WebView.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2013-11-08 22:28:56 +01:00
|
|
|
using blink::WebFrame;
|
|
|
|
using blink::WebScriptSource;
|
|
|
|
using blink::WebString;
|
|
|
|
using blink::WebURL;
|
|
|
|
using blink::WebView;
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2014-07-16 23:27:25 +02:00
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// CefBrowserImpl static methods.
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// static
|
|
|
|
CefRefPtr<CefBrowserImpl> CefBrowserImpl::GetBrowserForView(
|
|
|
|
content::RenderView* view) {
|
|
|
|
return CefContentRendererClient::Get()->GetBrowserForView(view);
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
CefRefPtr<CefBrowserImpl> CefBrowserImpl::GetBrowserForMainFrame(
|
2013-11-08 22:28:56 +01:00
|
|
|
blink::WebFrame* frame) {
|
2012-04-03 03:34:16 +02:00
|
|
|
return CefContentRendererClient::Get()->GetBrowserForMainFrame(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// CefBrowser methods.
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
CefRefPtr<CefBrowserHost> CefBrowserImpl::GetHost() {
|
|
|
|
NOTREACHED() << "GetHost cannot be called from the render process";
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefBrowserImpl::CanGoBack() {
|
|
|
|
CEF_REQUIRE_RT_RETURN(false);
|
|
|
|
|
2013-07-24 22:15:18 +02:00
|
|
|
return webkit_glue::CanGoBack(render_view()->GetWebView());
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserImpl::GoBack() {
|
|
|
|
CEF_REQUIRE_RT_RETURN_VOID();
|
|
|
|
|
2013-07-24 22:15:18 +02:00
|
|
|
webkit_glue::GoBack(render_view()->GetWebView());
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CefBrowserImpl::CanGoForward() {
|
|
|
|
CEF_REQUIRE_RT_RETURN(false);
|
|
|
|
|
2013-07-24 22:15:18 +02:00
|
|
|
return webkit_glue::CanGoForward(render_view()->GetWebView());
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserImpl::GoForward() {
|
|
|
|
CEF_REQUIRE_RT_RETURN_VOID();
|
|
|
|
|
2013-07-24 22:15:18 +02:00
|
|
|
webkit_glue::GoForward(render_view()->GetWebView());
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CefBrowserImpl::IsLoading() {
|
|
|
|
CEF_REQUIRE_RT_RETURN(false);
|
|
|
|
|
2014-09-27 01:48:19 +02:00
|
|
|
if (render_view()->GetWebView()) {
|
|
|
|
blink::WebFrame* main_frame = render_view()->GetWebView()->mainFrame();
|
|
|
|
if (main_frame)
|
|
|
|
return main_frame->toWebLocalFrame()->isLoading();
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserImpl::Reload() {
|
|
|
|
CEF_REQUIRE_RT_RETURN_VOID();
|
|
|
|
|
|
|
|
if (render_view()->GetWebView() && render_view()->GetWebView()->mainFrame())
|
|
|
|
render_view()->GetWebView()->mainFrame()->reload(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserImpl::ReloadIgnoreCache() {
|
|
|
|
CEF_REQUIRE_RT_RETURN_VOID();
|
|
|
|
|
|
|
|
if (render_view()->GetWebView() && render_view()->GetWebView()->mainFrame())
|
|
|
|
render_view()->GetWebView()->mainFrame()->reload(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserImpl::StopLoad() {
|
|
|
|
CEF_REQUIRE_RT_RETURN_VOID();
|
|
|
|
|
|
|
|
if (render_view()->GetWebView() && render_view()->GetWebView()->mainFrame())
|
|
|
|
render_view()->GetWebView()->mainFrame()->stopLoading();
|
|
|
|
}
|
|
|
|
|
|
|
|
int CefBrowserImpl::GetIdentifier() {
|
|
|
|
CEF_REQUIRE_RT_RETURN(0);
|
|
|
|
|
2012-12-30 12:17:49 +01:00
|
|
|
return browser_id();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefBrowserImpl::IsSame(CefRefPtr<CefBrowser> that) {
|
|
|
|
CEF_REQUIRE_RT_RETURN(false);
|
|
|
|
|
|
|
|
CefBrowserImpl* impl = static_cast<CefBrowserImpl*>(that.get());
|
|
|
|
return (impl == this);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CefBrowserImpl::IsPopup() {
|
|
|
|
CEF_REQUIRE_RT_RETURN(false);
|
|
|
|
|
2012-12-30 12:17:49 +01:00
|
|
|
return is_popup();
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CefBrowserImpl::HasDocument() {
|
|
|
|
CEF_REQUIRE_RT_RETURN(false);
|
|
|
|
|
|
|
|
if (render_view()->GetWebView() && render_view()->GetWebView()->mainFrame())
|
|
|
|
return !render_view()->GetWebView()->mainFrame()->document().isNull();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefFrame> CefBrowserImpl::GetMainFrame() {
|
|
|
|
CEF_REQUIRE_RT_RETURN(NULL);
|
|
|
|
|
|
|
|
if (render_view()->GetWebView() && render_view()->GetWebView()->mainFrame())
|
|
|
|
return GetWebFrameImpl(render_view()->GetWebView()->mainFrame()).get();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefFrame> CefBrowserImpl::GetFocusedFrame() {
|
|
|
|
CEF_REQUIRE_RT_RETURN(NULL);
|
|
|
|
|
|
|
|
if (render_view()->GetWebView() &&
|
|
|
|
render_view()->GetWebView()->focusedFrame()) {
|
|
|
|
return GetWebFrameImpl(render_view()->GetWebView()->focusedFrame()).get();
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefFrame> CefBrowserImpl::GetFrame(int64 identifier) {
|
|
|
|
CEF_REQUIRE_RT_RETURN(NULL);
|
|
|
|
|
|
|
|
return GetWebFrameImpl(identifier).get();
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefFrame> CefBrowserImpl::GetFrame(const CefString& name) {
|
|
|
|
CEF_REQUIRE_RT_RETURN(NULL);
|
|
|
|
|
2014-09-24 17:38:11 +02:00
|
|
|
blink::WebView* web_view = render_view()->GetWebView();
|
|
|
|
if (web_view) {
|
|
|
|
const blink::WebString& frame_name = name.ToString16();
|
|
|
|
// Search by assigned frame name (Frame::name).
|
|
|
|
WebFrame* frame = web_view->findFrameByName(frame_name,
|
|
|
|
web_view->mainFrame());
|
|
|
|
if (!frame) {
|
|
|
|
// Search by unique frame name (Frame::uniqueName).
|
|
|
|
frame = webkit_glue::FindFrameByUniqueName(frame_name,
|
|
|
|
web_view->mainFrame());
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
if (frame)
|
|
|
|
return GetWebFrameImpl(frame).get();
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t CefBrowserImpl::GetFrameCount() {
|
|
|
|
CEF_REQUIRE_RT_RETURN(0);
|
|
|
|
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
if (render_view()->GetWebView()) {
|
|
|
|
WebFrame* main_frame = render_view()->GetWebView()->mainFrame();
|
|
|
|
if (main_frame) {
|
|
|
|
WebFrame* cur = main_frame;
|
|
|
|
do {
|
|
|
|
count++;
|
|
|
|
cur = cur->traverseNext(true);
|
|
|
|
} while (cur != main_frame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserImpl::GetFrameIdentifiers(std::vector<int64>& identifiers) {
|
|
|
|
CEF_REQUIRE_RT_RETURN_VOID();
|
|
|
|
|
2014-09-24 17:38:11 +02:00
|
|
|
if (identifiers.size() > 0)
|
|
|
|
identifiers.clear();
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
if (render_view()->GetWebView()) {
|
|
|
|
WebFrame* main_frame = render_view()->GetWebView()->mainFrame();
|
|
|
|
if (main_frame) {
|
|
|
|
WebFrame* cur = main_frame;
|
|
|
|
do {
|
2014-04-04 18:50:38 +02:00
|
|
|
identifiers.push_back(webkit_glue::GetIdentifier(cur));
|
2012-04-03 03:34:16 +02:00
|
|
|
cur = cur->traverseNext(true);
|
|
|
|
} while (cur != main_frame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserImpl::GetFrameNames(std::vector<CefString>& names) {
|
|
|
|
CEF_REQUIRE_RT_RETURN_VOID();
|
|
|
|
|
2014-09-24 17:38:11 +02:00
|
|
|
if (names.size() > 0)
|
|
|
|
names.clear();
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
if (render_view()->GetWebView()) {
|
|
|
|
WebFrame* main_frame = render_view()->GetWebView()->mainFrame();
|
|
|
|
if (main_frame) {
|
|
|
|
WebFrame* cur = main_frame;
|
|
|
|
do {
|
2012-10-04 21:17:13 +02:00
|
|
|
names.push_back(CefString(cur->uniqueName().utf8()));
|
2012-04-03 03:34:16 +02:00
|
|
|
cur = cur->traverseNext(true);
|
|
|
|
} while (cur != main_frame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefBrowserImpl::SendProcessMessage(CefProcessId target_process,
|
|
|
|
CefRefPtr<CefProcessMessage> message) {
|
|
|
|
Cef_Request_Params params;
|
|
|
|
CefProcessMessageImpl* impl =
|
|
|
|
static_cast<CefProcessMessageImpl*>(message.get());
|
|
|
|
if (impl->CopyTo(params)) {
|
2012-10-18 00:45:49 +02:00
|
|
|
return SendProcessMessage(target_process, params.name, ¶ms.arguments,
|
|
|
|
true);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// CefBrowserImpl public methods.
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
2012-11-20 21:08:36 +01:00
|
|
|
CefBrowserImpl::CefBrowserImpl(content::RenderView* render_view,
|
|
|
|
int browser_id,
|
2014-07-01 00:30:29 +02:00
|
|
|
bool is_popup,
|
|
|
|
bool is_windowless)
|
2012-04-03 03:34:16 +02:00
|
|
|
: content::RenderViewObserver(render_view),
|
2012-12-30 12:17:49 +01:00
|
|
|
browser_id_(browser_id),
|
2012-11-20 21:08:36 +01:00
|
|
|
is_popup_(is_popup),
|
2014-09-19 21:12:44 +02:00
|
|
|
is_windowless_(is_windowless) {
|
2012-05-18 23:18:01 +02:00
|
|
|
response_manager_.reset(new CefResponseManager);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CefBrowserImpl::~CefBrowserImpl() {
|
|
|
|
}
|
|
|
|
|
2014-07-16 23:27:25 +02:00
|
|
|
void CefBrowserImpl::LoadRequest(const CefMsg_LoadRequest_Params& params) {
|
|
|
|
CefRefPtr<CefFrameImpl> framePtr = GetWebFrameImpl(params.frame_id);
|
|
|
|
if (!framePtr.get())
|
|
|
|
return;
|
|
|
|
|
|
|
|
WebFrame* web_frame = framePtr->web_frame();
|
|
|
|
|
2015-12-01 19:22:28 +01:00
|
|
|
blink::WebURLRequest request;
|
|
|
|
CefRequestImpl::Get(params, request);
|
2014-07-16 23:27:25 +02:00
|
|
|
|
|
|
|
web_frame->loadRequest(request);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2012-10-18 00:45:49 +02:00
|
|
|
bool CefBrowserImpl::SendProcessMessage(CefProcessId target_process,
|
|
|
|
const std::string& name,
|
|
|
|
base::ListValue* arguments,
|
|
|
|
bool user_initiated) {
|
|
|
|
DCHECK_EQ(PID_BROWSER, target_process);
|
|
|
|
DCHECK(!name.empty());
|
|
|
|
|
|
|
|
Cef_Request_Params params;
|
|
|
|
params.name = name;
|
|
|
|
if (arguments)
|
|
|
|
params.arguments.Swap(arguments);
|
|
|
|
params.frame_id = -1;
|
|
|
|
params.user_initiated = user_initiated;
|
|
|
|
params.request_id = -1;
|
|
|
|
params.expect_response = false;
|
|
|
|
|
|
|
|
return Send(new CefHostMsg_Request(routing_id(), params));
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
CefRefPtr<CefFrameImpl> CefBrowserImpl::GetWebFrameImpl(
|
2013-11-08 22:28:56 +01:00
|
|
|
blink::WebFrame* frame) {
|
2012-04-03 03:34:16 +02:00
|
|
|
DCHECK(frame);
|
2014-04-04 18:50:38 +02:00
|
|
|
int64 frame_id = webkit_glue::GetIdentifier(frame);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Frames are re-used between page loads. Only add the frame to the map once.
|
|
|
|
FrameMap::const_iterator it = frames_.find(frame_id);
|
|
|
|
if (it != frames_.end())
|
|
|
|
return it->second;
|
|
|
|
|
|
|
|
CefRefPtr<CefFrameImpl> framePtr(new CefFrameImpl(this, frame));
|
|
|
|
frames_.insert(std::make_pair(frame_id, framePtr));
|
|
|
|
|
|
|
|
int64 parent_id = frame->parent() == NULL ?
|
2014-09-19 21:12:44 +02:00
|
|
|
webkit_glue::kInvalidFrameId :
|
|
|
|
webkit_glue::GetIdentifier(frame->parent());
|
2013-12-17 23:04:35 +01:00
|
|
|
base::string16 name = frame->uniqueName();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Notify the browser that the frame has been identified.
|
|
|
|
Send(new CefHostMsg_FrameIdentified(routing_id(), frame_id, parent_id, name));
|
|
|
|
|
|
|
|
return framePtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefFrameImpl> CefBrowserImpl::GetWebFrameImpl(int64 frame_id) {
|
2014-04-04 18:50:38 +02:00
|
|
|
if (frame_id == webkit_glue::kInvalidFrameId) {
|
2012-04-03 03:34:16 +02:00
|
|
|
if (render_view()->GetWebView() && render_view()->GetWebView()->mainFrame())
|
|
|
|
return GetWebFrameImpl(render_view()->GetWebView()->mainFrame());
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we already know about the frame.
|
|
|
|
FrameMap::const_iterator it = frames_.find(frame_id);
|
|
|
|
if (it != frames_.end())
|
|
|
|
return it->second;
|
|
|
|
|
|
|
|
if (render_view()->GetWebView()) {
|
|
|
|
// Check if the frame exists but we don't know about it yet.
|
|
|
|
WebFrame* main_frame = render_view()->GetWebView()->mainFrame();
|
|
|
|
if (main_frame) {
|
|
|
|
WebFrame* cur = main_frame;
|
|
|
|
do {
|
2014-04-04 18:50:38 +02:00
|
|
|
if (webkit_glue::GetIdentifier(cur) == frame_id)
|
2012-04-03 03:34:16 +02:00
|
|
|
return GetWebFrameImpl(cur);
|
|
|
|
cur = cur->traverseNext(true);
|
|
|
|
} while (cur != main_frame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-04-27 23:19:06 +02:00
|
|
|
void CefBrowserImpl::AddFrameObject(int64 frame_id,
|
|
|
|
CefTrackNode* tracked_object) {
|
|
|
|
CefRefPtr<CefTrackManager> manager;
|
|
|
|
|
|
|
|
if (!frame_objects_.empty()) {
|
|
|
|
FrameObjectMap::const_iterator it = frame_objects_.find(frame_id);
|
|
|
|
if (it != frame_objects_.end())
|
|
|
|
manager = it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!manager.get()) {
|
|
|
|
manager = new CefTrackManager();
|
|
|
|
frame_objects_.insert(std::make_pair(frame_id, manager));
|
|
|
|
}
|
|
|
|
|
|
|
|
manager->Add(tracked_object);
|
|
|
|
}
|
|
|
|
|
2013-09-13 01:36:54 +02:00
|
|
|
bool CefBrowserImpl::is_swapped_out() const {
|
|
|
|
content::RenderViewImpl* render_view_impl =
|
|
|
|
static_cast<content::RenderViewImpl*>(render_view());
|
|
|
|
return (!render_view_impl || render_view_impl->is_swapped_out());
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// RenderViewObserver methods.
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void CefBrowserImpl::OnDestruct() {
|
|
|
|
// Notify that the browser window has been destroyed.
|
|
|
|
CefRefPtr<CefApp> app = CefContentClient::Get()->application();
|
|
|
|
if (app.get()) {
|
|
|
|
CefRefPtr<CefRenderProcessHandler> handler =
|
|
|
|
app->GetRenderProcessHandler();
|
|
|
|
if (handler.get())
|
|
|
|
handler->OnBrowserDestroyed(this);
|
|
|
|
}
|
|
|
|
|
2012-05-18 23:18:01 +02:00
|
|
|
response_manager_.reset(NULL);
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
CefContentRendererClient::Get()->OnBrowserDestroyed(this);
|
|
|
|
}
|
|
|
|
|
2013-09-13 01:36:54 +02:00
|
|
|
void CefBrowserImpl::DidStartLoading() {
|
|
|
|
OnLoadingStateChange(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserImpl::DidStopLoading() {
|
|
|
|
OnLoadingStateChange(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserImpl::DidFailLoad(
|
2014-04-30 19:14:40 +02:00
|
|
|
blink::WebLocalFrame* frame,
|
2013-11-08 22:28:56 +01:00
|
|
|
const blink::WebURLError& error) {
|
2013-09-13 01:36:54 +02:00
|
|
|
OnLoadError(frame, error);
|
|
|
|
OnLoadEnd(frame);
|
|
|
|
}
|
|
|
|
|
2014-04-30 19:14:40 +02:00
|
|
|
void CefBrowserImpl::DidFinishLoad(blink::WebLocalFrame* frame) {
|
2013-11-08 22:28:56 +01:00
|
|
|
blink::WebDataSource* ds = frame->dataSource();
|
2012-11-21 23:11:22 +01:00
|
|
|
Send(new CefHostMsg_DidFinishLoad(routing_id(),
|
2014-04-04 18:50:38 +02:00
|
|
|
webkit_glue::GetIdentifier(frame),
|
2012-11-21 23:11:22 +01:00
|
|
|
ds->request().url(),
|
|
|
|
!frame->parent(),
|
|
|
|
ds->response().httpStatusCode()));
|
2013-09-13 01:36:54 +02:00
|
|
|
OnLoadEnd(frame);
|
2012-11-21 23:11:22 +01:00
|
|
|
}
|
|
|
|
|
2014-04-30 19:14:40 +02:00
|
|
|
void CefBrowserImpl::DidStartProvisionalLoad(blink::WebLocalFrame* frame) {
|
2012-04-03 03:34:16 +02:00
|
|
|
// Send the frame creation notification if necessary.
|
|
|
|
GetWebFrameImpl(frame);
|
|
|
|
}
|
|
|
|
|
2013-09-13 01:36:54 +02:00
|
|
|
void CefBrowserImpl::DidFailProvisionalLoad(
|
2014-04-30 19:14:40 +02:00
|
|
|
blink::WebLocalFrame* frame,
|
2013-11-08 22:28:56 +01:00
|
|
|
const blink::WebURLError& error) {
|
2013-09-13 01:36:54 +02:00
|
|
|
OnLoadError(frame, error);
|
|
|
|
}
|
|
|
|
|
2014-04-30 19:14:40 +02:00
|
|
|
void CefBrowserImpl::DidCommitProvisionalLoad(blink::WebLocalFrame* frame,
|
2013-09-13 01:36:54 +02:00
|
|
|
bool is_new_navigation) {
|
|
|
|
OnLoadStart(frame);
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
void CefBrowserImpl::FrameDetached(WebFrame* frame) {
|
2014-04-04 18:50:38 +02:00
|
|
|
int64 frame_id = webkit_glue::GetIdentifier(frame);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2013-08-16 19:05:26 +02:00
|
|
|
if (!frames_.empty()) {
|
2012-04-27 23:19:06 +02:00
|
|
|
// Remove the frame from the map.
|
|
|
|
FrameMap::iterator it = frames_.find(frame_id);
|
2013-08-16 19:05:26 +02:00
|
|
|
if (it != frames_.end()) {
|
|
|
|
it->second->Detach();
|
|
|
|
frames_.erase(it);
|
|
|
|
}
|
2012-04-27 23:19:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!frame_objects_.empty()) {
|
|
|
|
// Remove any tracked objects associated with the frame.
|
|
|
|
FrameObjectMap::iterator it = frame_objects_.find(frame_id);
|
|
|
|
if (it != frame_objects_.end())
|
|
|
|
frame_objects_.erase(it);
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2013-11-08 22:28:56 +01:00
|
|
|
void CefBrowserImpl::FocusedNodeChanged(const blink::WebNode& node) {
|
2012-06-11 17:52:49 +02:00
|
|
|
// Notify the handler.
|
|
|
|
CefRefPtr<CefApp> app = CefContentClient::Get()->application();
|
|
|
|
if (app.get()) {
|
|
|
|
CefRefPtr<CefRenderProcessHandler> handler =
|
|
|
|
app->GetRenderProcessHandler();
|
|
|
|
if (handler.get()) {
|
|
|
|
if (node.isNull()) {
|
|
|
|
handler->OnFocusedNodeChanged(this, GetFocusedFrame(), NULL);
|
|
|
|
} else {
|
2013-11-08 22:28:56 +01:00
|
|
|
const blink::WebDocument& document = node.document();
|
2012-06-11 17:52:49 +02:00
|
|
|
if (!document.isNull()) {
|
2013-11-08 22:28:56 +01:00
|
|
|
blink::WebFrame* frame = document.frame();
|
2012-06-11 17:52:49 +02:00
|
|
|
CefRefPtr<CefDOMDocumentImpl> documentImpl =
|
|
|
|
new CefDOMDocumentImpl(this, frame);
|
|
|
|
handler->OnFocusedNodeChanged(this,
|
|
|
|
GetWebFrameImpl(frame).get(),
|
|
|
|
documentImpl->GetOrCreateNode(node));
|
|
|
|
documentImpl->Detach();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2015-04-24 15:48:32 +02:00
|
|
|
void CefBrowserImpl::DraggableRegionsChanged(blink::WebFrame* frame) {
|
|
|
|
blink::WebVector<blink::WebDraggableRegion> webregions =
|
|
|
|
frame->document().draggableRegions();
|
|
|
|
std::vector<Cef_DraggableRegion_Params> regions;
|
|
|
|
for (size_t i = 0; i < webregions.size(); ++i) {
|
|
|
|
Cef_DraggableRegion_Params region;
|
|
|
|
region.bounds = webregions[i].bounds;
|
|
|
|
region.draggable = webregions[i].draggable;
|
|
|
|
regions.push_back(region);
|
|
|
|
}
|
|
|
|
Send(new CefHostMsg_UpdateDraggableRegions(routing_id(), regions));
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
bool CefBrowserImpl::OnMessageReceived(const IPC::Message& message) {
|
|
|
|
bool handled = true;
|
|
|
|
IPC_BEGIN_MESSAGE_MAP(CefBrowserImpl, message)
|
|
|
|
IPC_MESSAGE_HANDLER(CefMsg_Request, OnRequest)
|
|
|
|
IPC_MESSAGE_HANDLER(CefMsg_Response, OnResponse)
|
|
|
|
IPC_MESSAGE_HANDLER(CefMsg_ResponseAck, OnResponseAck)
|
2014-07-16 23:27:25 +02:00
|
|
|
IPC_MESSAGE_HANDLER(CefMsg_LoadRequest, LoadRequest)
|
2012-04-03 03:34:16 +02:00
|
|
|
IPC_MESSAGE_UNHANDLED(handled = false)
|
|
|
|
IPC_END_MESSAGE_MAP()
|
|
|
|
return handled;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// RenderViewObserver::OnMessageReceived message handlers.
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void CefBrowserImpl::OnRequest(const Cef_Request_Params& params) {
|
|
|
|
bool success = false;
|
|
|
|
std::string response;
|
|
|
|
bool expect_response_ack = false;
|
|
|
|
|
2013-07-11 19:44:48 +02:00
|
|
|
TRACE_EVENT2("libcef", "CefBrowserImpl::OnRequest",
|
|
|
|
"request_id", params.request_id,
|
|
|
|
"expect_response", params.expect_response ? 1 : 0);
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
if (params.user_initiated) {
|
|
|
|
// Give the user a chance to handle the request.
|
|
|
|
CefRefPtr<CefApp> app = CefContentClient::Get()->application();
|
|
|
|
if (app.get()) {
|
|
|
|
CefRefPtr<CefRenderProcessHandler> handler =
|
|
|
|
app->GetRenderProcessHandler();
|
|
|
|
if (handler.get()) {
|
|
|
|
CefRefPtr<CefProcessMessageImpl> message(
|
|
|
|
new CefProcessMessageImpl(const_cast<Cef_Request_Params*>(¶ms),
|
|
|
|
false, true));
|
2012-06-11 22:03:49 +02:00
|
|
|
success = handler->OnProcessMessageReceived(this, PID_BROWSER,
|
2012-04-03 03:34:16 +02:00
|
|
|
message.get());
|
|
|
|
message->Detach(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (params.name == "execute-code") {
|
|
|
|
// Execute code.
|
|
|
|
CefRefPtr<CefFrameImpl> framePtr = GetWebFrameImpl(params.frame_id);
|
|
|
|
if (framePtr.get()) {
|
|
|
|
WebFrame* web_frame = framePtr->web_frame();
|
|
|
|
if (web_frame) {
|
|
|
|
DCHECK_EQ(params.arguments.GetSize(), (size_t)4);
|
|
|
|
|
|
|
|
bool is_javascript = false;
|
2012-10-18 00:45:49 +02:00
|
|
|
std::string code, script_url;
|
2012-04-03 03:34:16 +02:00
|
|
|
int script_start_line = 0;
|
|
|
|
|
|
|
|
params.arguments.GetBoolean(0, &is_javascript);
|
|
|
|
params.arguments.GetString(1, &code);
|
|
|
|
DCHECK(!code.empty());
|
|
|
|
params.arguments.GetString(2, &script_url);
|
|
|
|
params.arguments.GetInteger(3, &script_start_line);
|
|
|
|
DCHECK_GE(script_start_line, 0);
|
|
|
|
|
|
|
|
if (is_javascript) {
|
|
|
|
web_frame->executeScript(
|
2014-01-02 23:41:11 +01:00
|
|
|
WebScriptSource(base::UTF8ToUTF16(code),
|
2012-10-18 00:45:49 +02:00
|
|
|
GURL(script_url),
|
2012-04-03 03:34:16 +02:00
|
|
|
script_start_line));
|
|
|
|
success = true;
|
|
|
|
} else {
|
|
|
|
// TODO(cef): implement support for CSS code.
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (params.name == "execute-command") {
|
|
|
|
// Execute command.
|
|
|
|
CefRefPtr<CefFrameImpl> framePtr = GetWebFrameImpl(params.frame_id);
|
|
|
|
if (framePtr.get()) {
|
|
|
|
WebFrame* web_frame = framePtr->web_frame();
|
|
|
|
if (web_frame) {
|
|
|
|
DCHECK_EQ(params.arguments.GetSize(), (size_t)1);
|
|
|
|
|
2012-10-18 00:45:49 +02:00
|
|
|
std::string command;
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
params.arguments.GetString(0, &command);
|
|
|
|
DCHECK(!command.empty());
|
|
|
|
|
2015-07-24 02:06:56 +02:00
|
|
|
if (base::LowerCaseEqualsASCII(command, "getsource")) {
|
2012-04-03 03:34:16 +02:00
|
|
|
response = web_frame->contentAsMarkup().utf8();
|
|
|
|
success = true;
|
2015-07-24 02:06:56 +02:00
|
|
|
} else if (base::LowerCaseEqualsASCII(command, "gettext")) {
|
2013-10-29 18:53:18 +01:00
|
|
|
response = webkit_glue::DumpDocumentText(web_frame);
|
2012-04-03 03:34:16 +02:00
|
|
|
success = true;
|
2014-01-02 23:41:11 +01:00
|
|
|
} else if (web_frame->executeCommand(base::UTF8ToUTF16(command))) {
|
2012-04-03 03:34:16 +02:00
|
|
|
success = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (params.name == "load-string") {
|
|
|
|
// Load a string.
|
|
|
|
CefRefPtr<CefFrameImpl> framePtr = GetWebFrameImpl(params.frame_id);
|
|
|
|
if (framePtr.get()) {
|
|
|
|
WebFrame* web_frame = framePtr->web_frame();
|
|
|
|
if (web_frame) {
|
|
|
|
DCHECK_EQ(params.arguments.GetSize(), (size_t)2);
|
|
|
|
|
2012-10-18 00:45:49 +02:00
|
|
|
std::string string, url;
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
params.arguments.GetString(0, &string);
|
|
|
|
params.arguments.GetString(1, &url);
|
|
|
|
|
2012-10-18 00:45:49 +02:00
|
|
|
web_frame->loadHTMLString(string, GURL(url));
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Invalid request.
|
|
|
|
NOTREACHED();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params.expect_response) {
|
|
|
|
DCHECK_GE(params.request_id, 0);
|
|
|
|
|
|
|
|
// Send a response to the browser.
|
|
|
|
Cef_Response_Params response_params;
|
|
|
|
response_params.request_id = params.request_id;
|
|
|
|
response_params.success = success;
|
|
|
|
response_params.response = response;
|
|
|
|
response_params.expect_response_ack = expect_response_ack;
|
|
|
|
Send(new CefHostMsg_Response(routing_id(), response_params));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserImpl::OnResponse(const Cef_Response_Params& params) {
|
2012-05-18 23:18:01 +02:00
|
|
|
response_manager_->RunHandler(params);
|
2012-04-03 03:34:16 +02:00
|
|
|
if (params.expect_response_ack)
|
|
|
|
Send(new CefHostMsg_ResponseAck(routing_id(), params.request_id));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserImpl::OnResponseAck(int request_id) {
|
2012-05-18 23:18:01 +02:00
|
|
|
response_manager_->RunAckHandler(request_id);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
2013-09-13 01:36:54 +02:00
|
|
|
|
|
|
|
void CefBrowserImpl::OnLoadingStateChange(bool isLoading) {
|
|
|
|
if (is_swapped_out())
|
|
|
|
return;
|
|
|
|
|
|
|
|
CefRefPtr<CefApp> app = CefContentClient::Get()->application();
|
|
|
|
if (app.get()) {
|
|
|
|
CefRefPtr<CefRenderProcessHandler> handler =
|
|
|
|
app->GetRenderProcessHandler();
|
|
|
|
if (handler.get()) {
|
|
|
|
CefRefPtr<CefLoadHandler> load_handler = handler->GetLoadHandler();
|
|
|
|
if (load_handler.get()) {
|
|
|
|
WebView* web_view = render_view()->GetWebView();
|
|
|
|
const bool canGoBack = webkit_glue::CanGoBack(web_view);
|
|
|
|
const bool canGoForward = webkit_glue::CanGoForward(web_view);
|
|
|
|
|
|
|
|
load_handler->OnLoadingStateChange(this, isLoading, canGoBack,
|
|
|
|
canGoForward);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-30 19:14:40 +02:00
|
|
|
void CefBrowserImpl::OnLoadStart(blink::WebLocalFrame* frame) {
|
2013-09-13 01:36:54 +02:00
|
|
|
if (is_swapped_out())
|
|
|
|
return;
|
|
|
|
|
|
|
|
CefRefPtr<CefApp> app = CefContentClient::Get()->application();
|
|
|
|
if (app.get()) {
|
|
|
|
CefRefPtr<CefRenderProcessHandler> handler =
|
|
|
|
app->GetRenderProcessHandler();
|
|
|
|
if (handler.get()) {
|
|
|
|
CefRefPtr<CefLoadHandler> load_handler = handler->GetLoadHandler();
|
|
|
|
if (load_handler.get()) {
|
|
|
|
CefRefPtr<CefFrameImpl> cef_frame = GetWebFrameImpl(frame);
|
|
|
|
load_handler->OnLoadStart(this, cef_frame.get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-30 19:14:40 +02:00
|
|
|
void CefBrowserImpl::OnLoadEnd(blink::WebLocalFrame* frame) {
|
2013-09-13 01:36:54 +02:00
|
|
|
if (is_swapped_out())
|
|
|
|
return;
|
|
|
|
|
|
|
|
CefRefPtr<CefApp> app = CefContentClient::Get()->application();
|
|
|
|
if (app.get()) {
|
|
|
|
CefRefPtr<CefRenderProcessHandler> handler =
|
|
|
|
app->GetRenderProcessHandler();
|
|
|
|
if (handler.get()) {
|
|
|
|
CefRefPtr<CefLoadHandler> load_handler = handler->GetLoadHandler();
|
|
|
|
if (load_handler.get()) {
|
|
|
|
CefRefPtr<CefFrameImpl> cef_frame = GetWebFrameImpl(frame);
|
|
|
|
int httpStatusCode = frame->dataSource()->response().httpStatusCode();
|
|
|
|
load_handler->OnLoadEnd(this, cef_frame.get(), httpStatusCode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-30 19:14:40 +02:00
|
|
|
void CefBrowserImpl::OnLoadError(blink::WebLocalFrame* frame,
|
2013-11-08 22:28:56 +01:00
|
|
|
const blink::WebURLError& error) {
|
2013-09-13 01:36:54 +02:00
|
|
|
if (is_swapped_out())
|
|
|
|
return;
|
|
|
|
|
|
|
|
CefRefPtr<CefApp> app = CefContentClient::Get()->application();
|
|
|
|
if (app.get()) {
|
|
|
|
CefRefPtr<CefRenderProcessHandler> handler =
|
|
|
|
app->GetRenderProcessHandler();
|
|
|
|
if (handler.get()) {
|
|
|
|
CefRefPtr<CefLoadHandler> load_handler = handler->GetLoadHandler();
|
|
|
|
if (load_handler.get()) {
|
|
|
|
CefRefPtr<CefFrameImpl> cef_frame = GetWebFrameImpl(frame);
|
|
|
|
const cef_errorcode_t errorCode =
|
|
|
|
static_cast<cef_errorcode_t>(error.reason);
|
|
|
|
const std::string& errorText = error.localizedDescription.utf8();
|
|
|
|
const GURL& failedUrl = error.unreachableURL;
|
|
|
|
load_handler->OnLoadError(this, cef_frame.get(), errorCode, errorText,
|
|
|
|
failedUrl.spec());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|