| Index: third_party/WebKit/Source/core/dom/custom/CustomElementDisconnectedCallbackReaction.h
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementDisconnectedCallbackReaction.h b/third_party/WebKit/Source/core/dom/custom/CustomElementDisconnectedCallbackReaction.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..81059c23f3d2ec257266dbdce261c375f1dc13e0
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementDisconnectedCallbackReaction.h
|
| @@ -0,0 +1,27 @@
|
| +// 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.
|
| +
|
| +#ifndef CustomElementDisconnectedCallbackReaction_h
|
| +#define CustomElementDisconnectedCallbackReaction_h
|
| +
|
| +#include "core/CoreExport.h"
|
| +#include "core/dom/custom/CustomElementReaction.h"
|
| +#include "platform/heap/Handle.h"
|
| +#include "wtf/Noncopyable.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class CORE_EXPORT CustomElementDisconnectedCallbackReaction final
|
| + : public CustomElementReaction {
|
| + WTF_MAKE_NONCOPYABLE(CustomElementDisconnectedCallbackReaction);
|
| +public:
|
| + CustomElementDisconnectedCallbackReaction(CustomElementDefinition*);
|
| +
|
| +private:
|
| + void invoke(Element*) override;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // CustomElementDisconnectedCallbackReaction_h
|
|
|