| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "core/dom/custom/CustomElementRegistry.h" | 32 #include "core/dom/custom/CustomElementRegistry.h" |
| 33 | 33 |
| 34 #include "HTMLNames.h" | |
| 35 #include "SVGNames.h" | |
| 36 #include "bindings/v8/CustomElementConstructorBuilder.h" | 34 #include "bindings/v8/CustomElementConstructorBuilder.h" |
| 35 #include "core/HTMLNames.h" |
| 36 #include "core/SVGNames.h" |
| 37 #include "core/dom/DocumentLifecycleObserver.h" | 37 #include "core/dom/DocumentLifecycleObserver.h" |
| 38 #include "core/dom/custom/CustomElementException.h" | 38 #include "core/dom/custom/CustomElementException.h" |
| 39 #include "core/dom/custom/CustomElementRegistrationContext.h" | 39 #include "core/dom/custom/CustomElementRegistrationContext.h" |
| 40 | 40 |
| 41 namespace WebCore { | 41 namespace WebCore { |
| 42 | 42 |
| 43 class RegistrationContextObserver : public DocumentLifecycleObserver { | 43 class RegistrationContextObserver : public DocumentLifecycleObserver { |
| 44 public: | 44 public: |
| 45 explicit RegistrationContextObserver(Document* document) | 45 explicit RegistrationContextObserver(Document* document) |
| 46 : DocumentLifecycleObserver(document) | 46 : DocumentLifecycleObserver(document) |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 return definition.get(); | 121 return definition.get(); |
| 122 } | 122 } |
| 123 | 123 |
| 124 CustomElementDefinition* CustomElementRegistry::find(const CustomElementDescript
or& descriptor) const | 124 CustomElementDefinition* CustomElementRegistry::find(const CustomElementDescript
or& descriptor) const |
| 125 { | 125 { |
| 126 return m_definitions.get(descriptor); | 126 return m_definitions.get(descriptor); |
| 127 } | 127 } |
| 128 | 128 |
| 129 } // namespace WebCore | 129 } // namespace WebCore |
| OLD | NEW |