| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 // Definitions | 60 // Definitions |
| 61 void registerElement(Document*, CustomElementConstructorBuilder*, const Atom
icString& type, CustomElement::NameSet validNames, ExceptionState&); | 61 void registerElement(Document*, CustomElementConstructorBuilder*, const Atom
icString& type, CustomElement::NameSet validNames, ExceptionState&); |
| 62 | 62 |
| 63 PassRefPtr<Element> createCustomTagElement(Document&, const QualifiedName&); | 63 PassRefPtr<Element> createCustomTagElement(Document&, const QualifiedName&); |
| 64 static void setIsAttributeAndTypeExtension(Element*, const AtomicString& typ
e); | 64 static void setIsAttributeAndTypeExtension(Element*, const AtomicString& typ
e); |
| 65 static void setTypeExtension(Element*, const AtomicString& type); | 65 static void setTypeExtension(Element*, const AtomicString& type); |
| 66 | 66 |
| 67 void resolve(Element*, const CustomElementDescriptor&); | 67 void resolve(Element*, const CustomElementDescriptor&); |
| 68 | 68 |
| 69 void trace(Visitor*); | |
| 70 | |
| 71 protected: | 69 protected: |
| 72 CustomElementRegistrationContext(); | 70 CustomElementRegistrationContext(); |
| 73 | 71 |
| 74 // Instance creation | 72 // Instance creation |
| 75 void didGiveTypeExtension(Element*, const AtomicString& type); | 73 void didGiveTypeExtension(Element*, const AtomicString& type); |
| 76 | 74 |
| 77 private: | 75 private: |
| 78 void resolveOrScheduleResolution(Element*, const AtomicString& typeExtension
); | 76 void resolveOrScheduleResolution(Element*, const AtomicString& typeExtension
); |
| 79 | 77 |
| 80 CustomElementRegistry m_registry; | 78 CustomElementRegistry m_registry; |
| 81 | 79 |
| 82 // Element creation | 80 // Element creation |
| 83 OwnPtr<CustomElementUpgradeCandidateMap> m_candidates; | 81 OwnPtr<CustomElementUpgradeCandidateMap> m_candidates; |
| 84 }; | 82 }; |
| 85 | 83 |
| 86 } | 84 } |
| 87 | 85 |
| 88 #endif // CustomElementRegistrationContext_h | 86 #endif // CustomElementRegistrationContext_h |
| 89 | 87 |
| OLD | NEW |