| Index: third_party/WebKit/Source/core/dom/custom/CustomElementAdoptedCallbackReaction.h
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementAdoptedCallbackReaction.h b/third_party/WebKit/Source/core/dom/custom/CustomElementAdoptedCallbackReaction.h
|
| index 717c67b5b224a43be58d718bb511f43e189893e8..83c7963b22a00c87da5a70241a9760441f19ece4 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementAdoptedCallbackReaction.h
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementAdoptedCallbackReaction.h
|
| @@ -12,14 +12,22 @@
|
|
|
| namespace blink {
|
|
|
| +class Document;
|
| +
|
| class CORE_EXPORT CustomElementAdoptedCallbackReaction final
|
| : public CustomElementReaction {
|
| WTF_MAKE_NONCOPYABLE(CustomElementAdoptedCallbackReaction);
|
| public:
|
| - CustomElementAdoptedCallbackReaction(CustomElementDefinition*);
|
| + CustomElementAdoptedCallbackReaction(
|
| + CustomElementDefinition*, Document* oldOwner, Document* newOwner);
|
| +
|
| + DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| void invoke(Element*) override;
|
| +
|
| + Member<Document> m_oldOwner;
|
| + Member<Document> m_newOwner;
|
| };
|
|
|
| } // namespace blink
|
|
|