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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 | 55 |
56 // Definitions | 56 // Definitions |
57 void registerElement(Document*, CustomElementConstructorBuilder*, const Atom
icString& type, CustomElement::NameSet validNames, ExceptionState&); | 57 void registerElement(Document*, CustomElementConstructorBuilder*, const Atom
icString& type, CustomElement::NameSet validNames, ExceptionState&); |
58 | 58 |
59 PassRefPtrWillBeRawPtr<Element> createCustomTagElement(Document&, const Qual
ifiedName&); | 59 PassRefPtrWillBeRawPtr<Element> createCustomTagElement(Document&, const Qual
ifiedName&); |
60 static void setIsAttributeAndTypeExtension(Element*, const AtomicString& typ
e); | 60 static void setIsAttributeAndTypeExtension(Element*, const AtomicString& typ
e); |
61 static void setTypeExtension(Element*, const AtomicString& type); | 61 static void setTypeExtension(Element*, const AtomicString& type); |
62 | 62 |
63 void resolve(Element*, const CustomElementDescriptor&); | 63 void resolve(Element*, const CustomElementDescriptor&); |
64 | 64 |
65 void trace(Visitor*); | 65 DECLARE_TRACE(); |
66 | 66 |
67 protected: | 67 protected: |
68 CustomElementRegistrationContext(); | 68 CustomElementRegistrationContext(); |
69 | 69 |
70 // Instance creation | 70 // Instance creation |
71 void didGiveTypeExtension(Element*, const AtomicString& type); | 71 void didGiveTypeExtension(Element*, const AtomicString& type); |
72 | 72 |
73 private: | 73 private: |
74 void resolveOrScheduleResolution(Element*, const AtomicString& typeExtension
); | 74 void resolveOrScheduleResolution(Element*, const AtomicString& typeExtension
); |
75 | 75 |
76 CustomElementRegistry m_registry; | 76 CustomElementRegistry m_registry; |
77 | 77 |
78 // Element creation | 78 // Element creation |
79 OwnPtrWillBeMember<CustomElementUpgradeCandidateMap> m_candidates; | 79 OwnPtrWillBeMember<CustomElementUpgradeCandidateMap> m_candidates; |
80 }; | 80 }; |
81 | 81 |
82 } // namespace blink | 82 } // namespace blink |
83 | 83 |
84 #endif // CustomElementRegistrationContext_h | 84 #endif // CustomElementRegistrationContext_h |
85 | 85 |
OLD | NEW |