| 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 CustomElementConstructorBuilder; | |
| 47 class Document; | |
| 48 class Element; | |
| 49 class ExceptionState; | |
| 50 | |
| 51 class CustomElementRegistrationContext FINAL : public RefCountedWillBeGarbageCol
lectedFinalized<CustomElementRegistrationContext> { | 46 class CustomElementRegistrationContext FINAL : public RefCountedWillBeGarbageCol
lectedFinalized<CustomElementRegistrationContext> { |
| 52 public: | 47 public: |
| 53 static PassRefPtrWillBeRawPtr<CustomElementRegistrationContext> create() | 48 static PassRefPtrWillBeRawPtr<CustomElementRegistrationContext> create() |
| 54 { | 49 { |
| 55 return adoptRefWillBeNoop(new CustomElementRegistrationContext()); | 50 return adoptRefWillBeNoop(new CustomElementRegistrationContext()); |
| 56 } | 51 } |
| 57 | 52 |
| 58 ~CustomElementRegistrationContext() { } | 53 ~CustomElementRegistrationContext() { } |
| 59 | 54 |
| 60 // Definitions | 55 // Definitions |
| (...skipping 15 matching lines...) Expand all Loading... |
| 76 | 71 |
| 77 private: | 72 private: |
| 78 void resolveOrScheduleResolution(Element*, const AtomicString& typeExtension
); | 73 void resolveOrScheduleResolution(Element*, const AtomicString& typeExtension
); |
| 79 | 74 |
| 80 CustomElementRegistry m_registry; | 75 CustomElementRegistry m_registry; |
| 81 | 76 |
| 82 // Element creation | 77 // Element creation |
| 83 OwnPtrWillBeMember<CustomElementUpgradeCandidateMap> m_candidates; | 78 OwnPtrWillBeMember<CustomElementUpgradeCandidateMap> m_candidates; |
| 84 }; | 79 }; |
| 85 | 80 |
| 86 } | 81 } // namespace blink |
| 87 | 82 |
| 88 #endif // CustomElementRegistrationContext_h | 83 #endif // CustomElementRegistrationContext_h |
| 89 | 84 |
| OLD | NEW |