Chromium Code Reviews| Index: third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeReaction.h |
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeReaction.h b/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeReaction.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9749148c0ce1c6f3b7fa389cab50c312633d3321 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeReaction.h |
| @@ -0,0 +1,31 @@ |
| +// 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 CustomElementUpgradeReaction_h |
| +#define CustomElementUpgradeReaction_h |
| + |
| +#include "core/CoreExport.h" |
| +#include "core/dom/custom/CustomElementReaction.h" |
| +#include "platform/heap/Handle.h" |
| +#include "wtf/Noncopyable.h" |
| + |
| +namespace blink { |
| + |
| +class CustomElementDefinition; |
| +class Element; |
| + |
| +class CORE_EXPORT CustomElementUpgradeReaction : public CustomElementReaction { |
| + WTF_MAKE_NONCOPYABLE(CustomElementUpgradeReaction); |
| +public: |
| + CustomElementUpgradeReaction(CustomElementDefinition*); |
| + virtual ~CustomElementUpgradeReaction(); |
| + DECLARE_VIRTUAL_TRACE(); |
| + void invoke(Element*) override; |
|
yosin_UTC9
2016/06/01 06:15:44
nit: Should be private?
|
| +private: |
| + Member<CustomElementDefinition> m_definition; |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // CustomElementUpgradeReaction_h |