| Index: sky/engine/core/dom/custom/CustomElement.h
|
| diff --git a/sky/engine/core/dom/custom/CustomElement.h b/sky/engine/core/dom/custom/CustomElement.h
|
| index ea7982b24f4302b7568437b917bbab4d10b176e3..5ffb63f54936b9f3cc51eb141b0e187eaf5c44a7 100644
|
| --- a/sky/engine/core/dom/custom/CustomElement.h
|
| +++ b/sky/engine/core/dom/custom/CustomElement.h
|
| @@ -48,13 +48,7 @@ class HTMLImportChild;
|
|
|
| class CustomElement {
|
| public:
|
| - enum NameSet {
|
| - EmbedderNames = 1 << 0,
|
| - StandardNames = 1 << 1,
|
| - AllNames = EmbedderNames | StandardNames
|
| - };
|
| - static bool isValidName(const AtomicString& name, NameSet validNames = AllNames);
|
| - static void addEmbedderCustomElementName(const AtomicString& name);
|
| + static bool isValidName(const AtomicString& name);
|
|
|
| // API to notify of document-level changes
|
| static CustomElementMicrotaskImportStep* didCreateImport(HTMLImportChild*);
|
| @@ -72,8 +66,6 @@ public:
|
|
|
| private:
|
| CustomElement();
|
| -
|
| - static Vector<AtomicString>& embedderCustomElementNames();
|
| };
|
|
|
| }
|
|
|