mirror of
https://github.com/electron/electron.git
synced 2026-01-24 14:57:58 -05:00
Schemas should be registered early
This commit is contained in:
@@ -8,7 +8,6 @@
|
||||
#include "native_mate/dictionary.h"
|
||||
#include "native_mate/object_template_builder.h"
|
||||
#include "third_party/WebKit/public/web/WebDocument.h"
|
||||
#include "third_party/WebKit/public/web/WebCustomElement.h"
|
||||
#include "third_party/WebKit/public/web/WebLocalFrame.h"
|
||||
#include "third_party/WebKit/public/web/WebView.h"
|
||||
|
||||
@@ -54,8 +53,6 @@ double WebView::GetZoomFactor() const {
|
||||
|
||||
v8::Handle<v8::Value> WebView::RegisterEmbedderCustomElement(
|
||||
const base::string16& name, v8::Handle<v8::Object> options) {
|
||||
blink::WebCustomElement::addEmbedderCustomElementName(name);
|
||||
|
||||
auto document = blink::WebLocalFrame::frameForCurrentContext()->document();
|
||||
blink::WebExceptionCode ec = 0;
|
||||
return document.registerEmbedderCustomElement(name, options, ec);
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
#include "content/public/renderer/render_thread.h"
|
||||
#include "base/command_line.h"
|
||||
#include "native_mate/converter.h"
|
||||
#include "third_party/WebKit/public/web/WebCustomElement.h"
|
||||
#include "third_party/WebKit/public/web/WebDocument.h"
|
||||
#include "third_party/WebKit/public/web/WebFrame.h"
|
||||
#include "third_party/WebKit/public/web/WebKit.h"
|
||||
@@ -99,6 +100,9 @@ AtomRendererClient::~AtomRendererClient() {
|
||||
void AtomRendererClient::WebKitInitialized() {
|
||||
EnableWebRuntimeFeatures();
|
||||
|
||||
blink::WebCustomElement::addEmbedderCustomElementName("webview");
|
||||
blink::WebCustomElement::addEmbedderCustomElementName("browserplugin");
|
||||
|
||||
if (!IsNodeBindingEnabled())
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user