| Index: third_party/WebKit/Source/core/dom/custom/CustomElementDisconnectedCallbackReaction.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementDisconnectedCallbackReaction.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementDisconnectedCallbackReaction.cpp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..89c6073fccdec88d90c2136f32afd0277fefde97
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementDisconnectedCallbackReaction.cpp
|
| @@ -0,0 +1,23 @@
|
| +// 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 "core/dom/custom/CustomElementDisconnectedCallbackReaction.h"
|
| +
|
| +#include "core/dom/custom/CustomElementDefinition.h"
|
| +
|
| +namespace blink {
|
| +
|
| +CustomElementDisconnectedCallbackReaction::CustomElementDisconnectedCallbackReaction(
|
| + CustomElementDefinition* definition)
|
| + : CustomElementReaction(definition)
|
| +{
|
| + DCHECK(definition->hasDisconnectedCallback());
|
| +}
|
| +
|
| +void CustomElementDisconnectedCallbackReaction::invoke(Element* element)
|
| +{
|
| + m_definition->runDisconnectedCallback(element);
|
| +}
|
| +
|
| +} // namespace blink
|
|
|