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.
|
|
|
|
|
2018-04-19 17:44:42 +02:00
|
|
|
#ifndef CEF_LIBCEF_RENDERER_BLINK_GLUE_H_
|
|
|
|
#define CEF_LIBCEF_RENDERER_BLINK_GLUE_H_
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2016-01-06 20:20:54 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2017-07-06 22:39:37 +02:00
|
|
|
#include <memory>
|
2012-04-03 03:34:16 +02:00
|
|
|
#include <string>
|
2016-01-06 20:20:54 +01:00
|
|
|
|
2015-10-09 17:23:12 +02:00
|
|
|
#include "include/internal/cef_types.h"
|
2017-07-06 22:39:37 +02:00
|
|
|
|
2018-04-19 17:44:42 +02:00
|
|
|
#include "third_party/blink/public/platform/web_common.h"
|
2018-11-30 23:21:07 +01:00
|
|
|
#include "third_party/blink/renderer/bindings/core/v8/sanitize_script_errors.h"
|
2016-08-31 13:25:56 +02:00
|
|
|
#include "v8/include/v8.h"
|
2015-10-09 17:23:12 +02:00
|
|
|
|
2013-11-08 22:28:56 +01:00
|
|
|
namespace blink {
|
2016-11-23 21:54:29 +01:00
|
|
|
class WebElement;
|
2017-07-27 01:19:27 +02:00
|
|
|
class WebLocalFrame;
|
2013-10-29 18:53:18 +01:00
|
|
|
class WebNode;
|
|
|
|
class WebString;
|
2018-01-03 22:14:29 +01:00
|
|
|
class WebURLResponse;
|
2012-04-03 03:34:16 +02:00
|
|
|
class WebView;
|
2017-07-27 01:19:27 +02:00
|
|
|
} // namespace blink
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2018-04-19 17:44:42 +02:00
|
|
|
namespace blink_glue {
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2017-07-06 22:39:37 +02:00
|
|
|
BLINK_EXPORT extern const int64_t kInvalidFrameId;
|
2014-04-04 18:50:38 +02:00
|
|
|
|
2017-07-06 22:39:37 +02:00
|
|
|
BLINK_EXPORT bool CanGoBack(blink::WebView* view);
|
|
|
|
BLINK_EXPORT bool CanGoForward(blink::WebView* view);
|
|
|
|
BLINK_EXPORT void GoBack(blink::WebView* view);
|
|
|
|
BLINK_EXPORT void GoForward(blink::WebView* view);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2013-06-04 19:41:37 +02:00
|
|
|
// Returns the text of the document element.
|
2017-07-27 01:19:27 +02:00
|
|
|
BLINK_EXPORT std::string DumpDocumentText(blink::WebLocalFrame* frame);
|
2013-10-29 18:53:18 +01:00
|
|
|
|
2015-10-09 17:23:12 +02:00
|
|
|
// Expose additional actions on WebNode.
|
2017-07-06 22:39:37 +02:00
|
|
|
BLINK_EXPORT cef_dom_node_type_t GetNodeType(const blink::WebNode& node);
|
|
|
|
BLINK_EXPORT blink::WebString GetNodeName(const blink::WebNode& node);
|
|
|
|
BLINK_EXPORT blink::WebString CreateNodeMarkup(const blink::WebNode& node);
|
|
|
|
BLINK_EXPORT bool SetNodeValue(blink::WebNode& node,
|
|
|
|
const blink::WebString& value);
|
2014-09-24 17:38:11 +02:00
|
|
|
|
2017-07-06 22:39:37 +02:00
|
|
|
BLINK_EXPORT bool IsTextControlElement(const blink::WebElement& element);
|
2016-11-23 21:54:29 +01:00
|
|
|
|
2017-07-06 22:39:37 +02:00
|
|
|
BLINK_EXPORT v8::MaybeLocal<v8::Value> CallV8Function(
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
v8::Local<v8::Function> function,
|
|
|
|
v8::Local<v8::Object> receiver,
|
|
|
|
int argc,
|
|
|
|
v8::Local<v8::Value> args[],
|
|
|
|
v8::Isolate* isolate);
|
2016-08-31 13:25:56 +02:00
|
|
|
|
2017-07-06 22:39:37 +02:00
|
|
|
BLINK_EXPORT v8::MaybeLocal<v8::Value> ExecuteV8ScriptAndReturnValue(
|
2016-10-27 18:34:19 +02:00
|
|
|
const blink::WebString& source,
|
|
|
|
const blink::WebString& source_url,
|
|
|
|
int start_line,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
v8::TryCatch& tryCatch,
|
2018-11-30 23:21:07 +01:00
|
|
|
blink::SanitizeScriptErrors sanitizeScriptErrors);
|
2016-10-27 18:34:19 +02:00
|
|
|
|
2017-07-06 22:39:37 +02:00
|
|
|
BLINK_EXPORT bool IsScriptForbidden();
|
|
|
|
|
|
|
|
BLINK_EXPORT void RegisterURLSchemeAsLocal(const blink::WebString& scheme);
|
|
|
|
BLINK_EXPORT void RegisterURLSchemeAsSecure(const blink::WebString& scheme);
|
|
|
|
|
2019-02-04 23:31:31 +01:00
|
|
|
BLINK_EXPORT void RegisterURLSchemeAsSupportingFetchAPI(
|
|
|
|
const blink::WebString& scheme);
|
|
|
|
|
2017-07-06 22:39:37 +02:00
|
|
|
// Wrapper for blink::ScriptForbiddenScope.
|
|
|
|
class BLINK_EXPORT CefScriptForbiddenScope final {
|
|
|
|
public:
|
|
|
|
CefScriptForbiddenScope();
|
|
|
|
~CefScriptForbiddenScope();
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct Impl;
|
|
|
|
std::unique_ptr<Impl> impl_;
|
2016-08-31 13:25:56 +02:00
|
|
|
|
2017-07-06 22:39:37 +02:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefScriptForbiddenScope);
|
|
|
|
};
|
2017-01-23 18:36:54 +01:00
|
|
|
|
2018-01-03 22:14:29 +01:00
|
|
|
BLINK_EXPORT bool ResponseWasCached(const blink::WebURLResponse& response);
|
|
|
|
|
2018-04-19 17:44:42 +02:00
|
|
|
} // namespace blink_glue
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2018-04-19 17:44:42 +02:00
|
|
|
#endif // CEF_LIBCEF_RENDERER_BLINK_GLUE_H_
|