| 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 25 matching lines...) Expand all Loading... |
| 36 #include "core/dom/custom/CustomElementRegistry.h" | 36 #include "core/dom/custom/CustomElementRegistry.h" |
| 37 #include "core/dom/custom/CustomElementUpgradeCandidateMap.h" | 37 #include "core/dom/custom/CustomElementUpgradeCandidateMap.h" |
| 38 #include "platform/heap/Handle.h" | 38 #include "platform/heap/Handle.h" |
| 39 #include "wtf/HashMap.h" | 39 #include "wtf/HashMap.h" |
| 40 #include "wtf/PassOwnPtr.h" | 40 #include "wtf/PassOwnPtr.h" |
| 41 #include "wtf/PassRefPtr.h" | 41 #include "wtf/PassRefPtr.h" |
| 42 #include "wtf/text/AtomicString.h" | 42 #include "wtf/text/AtomicString.h" |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 class CustomElementRegistrationContext final : public RefCountedWillBeGarbageCol
lectedFinalized<CustomElementRegistrationContext> { | 46 class CustomElementRegistrationContext final : public GarbageCollectedFinalized<
CustomElementRegistrationContext> { |
| 47 public: | 47 public: |
| 48 static PassRefPtrWillBeRawPtr<CustomElementRegistrationContext> create() | 48 static RawPtr<CustomElementRegistrationContext> create() |
| 49 { | 49 { |
| 50 return adoptRefWillBeNoop(new CustomElementRegistrationContext()); | 50 return new CustomElementRegistrationContext(); |
| 51 } | 51 } |
| 52 | 52 |
| 53 ~CustomElementRegistrationContext() { } | 53 ~CustomElementRegistrationContext() { } |
| 54 void documentWasDetached() { m_registry.documentWasDetached(); } | 54 void documentWasDetached() { m_registry.documentWasDetached(); } |
| 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 RawPtr<Element> createCustomTagElement(Document&, const QualifiedName&); |
| 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 DECLARE_TRACE(); | 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 Member<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 |