| 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 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef V0CustomElementRegistrationContext_h | 31 #ifndef V0CustomElementRegistrationContext_h |
| 32 #define V0CustomElementRegistrationContext_h | 32 #define V0CustomElementRegistrationContext_h |
| 33 | 33 |
| 34 #include "core/dom/QualifiedName.h" | 34 #include "core/dom/QualifiedName.h" |
| 35 #include "core/dom/custom/V0CustomElementDescriptor.h" | 35 #include "core/dom/custom/V0CustomElementDescriptor.h" |
| 36 #include "core/dom/custom/V0CustomElementRegistry.h" | 36 #include "core/dom/custom/V0CustomElementRegistry.h" |
| 37 #include "core/dom/custom/V0CustomElementUpgradeCandidateMap.h" | 37 #include "core/dom/custom/V0CustomElementUpgradeCandidateMap.h" |
| 38 #include "platform/heap/Handle.h" | 38 #include "platform/heap/Handle.h" |
| 39 #include "wtf/text/AtomicString.h" | 39 #include "platform/wtf/text/AtomicString.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class CustomElementRegistry; | 43 class CustomElementRegistry; |
| 44 | 44 |
| 45 class V0CustomElementRegistrationContext final | 45 class V0CustomElementRegistrationContext final |
| 46 : public GarbageCollectedFinalized<V0CustomElementRegistrationContext> { | 46 : public GarbageCollectedFinalized<V0CustomElementRegistrationContext> { |
| 47 public: | 47 public: |
| 48 static V0CustomElementRegistrationContext* Create() { | 48 static V0CustomElementRegistrationContext* Create() { |
| 49 return new V0CustomElementRegistrationContext(); | 49 return new V0CustomElementRegistrationContext(); |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 83 |
| 84 V0CustomElementRegistry registry_; | 84 V0CustomElementRegistry registry_; |
| 85 | 85 |
| 86 // Element creation | 86 // Element creation |
| 87 Member<V0CustomElementUpgradeCandidateMap> candidates_; | 87 Member<V0CustomElementUpgradeCandidateMap> candidates_; |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 } // namespace blink | 90 } // namespace blink |
| 91 | 91 |
| 92 #endif // V0CustomElementRegistrationContext_h | 92 #endif // V0CustomElementRegistrationContext_h |
| OLD | NEW |