| Index: third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.h b/third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f8d1890f0b893cc59eddc610204b9bf32e76cbca
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.h
|
| @@ -0,0 +1,29 @@
|
| +// Copyright 2016 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 "bindings/core/v8/DOMWrapperWorld.h"
|
| +#include "bindings/core/v8/ExceptionState.h"
|
| +#include "bindings/core/v8/ScriptCustomElementDefinition.h"
|
| +#include "bindings/core/v8/V8Binding.h"
|
| +#include "bindings/core/v8/V8BindingMacros.h"
|
| +#include "bindings/core/v8/V8HTMLElement.h"
|
| +#include "core/dom/Document.h"
|
| +#include "core/dom/Element.h"
|
| +#include "core/dom/ExceptionCode.h"
|
| +#include "core/dom/custom/CustomElementRegistry.h"
|
| +#include "core/frame/LocalDOMWindow.h"
|
| +
|
| +namespace blink {
|
| +
|
| +// https://html.spec.whatwg.org/multipage/dom.html#html-element-constructors
|
| +class CORE_EXPORT V8HTMLConstructor {
|
| + STATIC_ONLY(V8HTMLConstructor)
|
| +
|
| + public:
|
| + static void htmlConstructor(const v8::FunctionCallbackInfo<v8::Value>&,
|
| + const WrapperTypeInfo&,
|
| + const HTMLElementType);
|
| +};
|
| +
|
| +} // namespace blink
|
|
|