Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeReaction.h

Issue 2058823002: Implement callback reactions for Custom Elements V1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@stack-ce
Patch Set: dominicc review Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
index 407cb66879b6e4974ee141bb7c0786fa50556fbd..6d6092bed300605cb3a7e1562a4d7c4dcecaf005 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeReaction.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeReaction.h
@@ -12,7 +12,6 @@
namespace blink {
-class CustomElementDefinition;
class Element;
class CORE_EXPORT CustomElementUpgradeReaction final
@@ -20,12 +19,9 @@ class CORE_EXPORT CustomElementUpgradeReaction final
WTF_MAKE_NONCOPYABLE(CustomElementUpgradeReaction);
public:
CustomElementUpgradeReaction(CustomElementDefinition*);
- ~CustomElementUpgradeReaction() override;
- DECLARE_VIRTUAL_TRACE();
+
private:
void invoke(Element*) override;
-
- Member<CustomElementDefinition> m_definition;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698