| Index: Source/core/dom/CustomElementObserver.h
|
| diff --git a/Source/core/dom/CustomElementObserver.h b/Source/core/dom/CustomElementObserver.h
|
| index 39d702e6e92ae48267d29c2862c2b90585dd4938..ab7c57dcee885f9c961b09f811d96a5412df3584 100644
|
| --- a/Source/core/dom/CustomElementObserver.h
|
| +++ b/Source/core/dom/CustomElementObserver.h
|
| @@ -44,12 +44,14 @@ public:
|
|
|
| // API for CustomElement to kick off notifications
|
|
|
| + static void notifyElementDidFinishParsingChildren(Element*);
|
| static void notifyElementWasDestroyed(Element*);
|
|
|
| protected:
|
| void observe(Element*);
|
| void unobserve(Element*);
|
|
|
| + virtual void elementDidFinishParsingChildren(Element*) = 0;
|
| virtual void elementWasDestroyed(Element* element) { unobserve(element); }
|
|
|
| private:
|
|
|