git://git.webkit.org
/
WebKit.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Move QualifiedName from CustomElementInfo to JSCustomElementInterface
[WebKit.git]
/
Source
/
WebCore
/
bindings
/
js
/
JSCustomElementInterface.cpp
diff --git
a/Source/WebCore/bindings/js/JSCustomElementInterface.cpp
b/Source/WebCore/bindings/js/JSCustomElementInterface.cpp
index
5a19bc1
..
515b6de
100644
(file)
--- a/
Source/WebCore/bindings/js/JSCustomElementInterface.cpp
+++ b/
Source/WebCore/bindings/js/JSCustomElementInterface.cpp
@@
-44,8
+44,9
@@
using namespace JSC;
namespace WebCore {
namespace WebCore {
-JSCustomElementInterface::JSCustomElementInterface(JSObject* constructor, JSDOMGlobalObject* globalObject)
+JSCustomElementInterface::JSCustomElementInterface(
const QualifiedName& name,
JSObject* constructor, JSDOMGlobalObject* globalObject)
: ActiveDOMCallback(globalObject->scriptExecutionContext())
: ActiveDOMCallback(globalObject->scriptExecutionContext())
+ , m_name(name)
, m_constructor(constructor)
, m_isolatedWorld(&globalObject->world())
{
, m_constructor(constructor)
, m_isolatedWorld(&globalObject->world())
{