Chromium Code Reviews| Index: third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeReaction.cpp |
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeReaction.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeReaction.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b714143e85a21b2182ed1886e29cae8c76f932b1 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeReaction.cpp |
| @@ -0,0 +1,33 @@ |
| +// 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/CustomElementUpgradeReaction.h" |
| + |
| +#include "core/dom/Element.h" |
| +#include "core/dom/custom/CustomElementDefinition.h" |
| + |
| +namespace blink { |
| + |
| +CustomElementUpgradeReaction::CustomElementUpgradeReaction( |
| + CustomElementDefinition* definition) |
| + : m_definition(definition) |
| +{ |
| +} |
| + |
| +CustomElementUpgradeReaction::~CustomElementUpgradeReaction() |
| +{ |
|
yosin_UTC9
2016/06/01 06:15:44
s/{ }/=default;/
|
| +} |
| + |
| +DEFINE_TRACE(CustomElementUpgradeReaction) |
| +{ |
| + CustomElementReaction::trace(visitor); |
| + visitor->trace(m_definition); |
| +} |
| + |
| +void CustomElementUpgradeReaction::invoke(Element* element) |
| +{ |
| + m_definition->upgrade(element); |
| +} |
| + |
| +} // namespace blink |