| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 { | 99 { |
| 100 } | 100 } |
| 101 | 101 |
| 102 private: | 102 private: |
| 103 void dispatch(Element*) override; | 103 void dispatch(Element*) override; |
| 104 bool isCreatedCallback() const override { return true; } | 104 bool isCreatedCallback() const override { return true; } |
| 105 }; | 105 }; |
| 106 | 106 |
| 107 void CreatedInvocation::dispatch(Element* element) | 107 void CreatedInvocation::dispatch(Element* element) |
| 108 { | 108 { |
| 109 if (element->inDocument() && element->document().domWindow()) | 109 if (element->inShadowIncludingDocument() && element->document().domWindow()) |
| 110 CustomElementScheduler::scheduleCallback(callbacks(), element, CustomEle
mentLifecycleCallbacks::AttachedCallback); | 110 CustomElementScheduler::scheduleCallback(callbacks(), element, CustomEle
mentLifecycleCallbacks::AttachedCallback); |
| 111 callbacks()->created(element); | 111 callbacks()->created(element); |
| 112 } | 112 } |
| 113 | 113 |
| 114 RawPtr<CustomElementCallbackInvocation> CustomElementCallbackInvocation::createI
nvocation(RawPtr<CustomElementLifecycleCallbacks> callbacks, CustomElementLifecy
cleCallbacks::CallbackType which) | 114 RawPtr<CustomElementCallbackInvocation> CustomElementCallbackInvocation::createI
nvocation(RawPtr<CustomElementLifecycleCallbacks> callbacks, CustomElementLifecy
cleCallbacks::CallbackType which) |
| 115 { | 115 { |
| 116 switch (which) { | 116 switch (which) { |
| 117 case CustomElementLifecycleCallbacks::CreatedCallback: | 117 case CustomElementLifecycleCallbacks::CreatedCallback: |
| 118 return new CreatedInvocation(callbacks); | 118 return new CreatedInvocation(callbacks); |
| 119 | 119 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 131 return new AttributeChangedInvocation(callbacks, name, oldValue, newValue); | 131 return new AttributeChangedInvocation(callbacks, name, oldValue, newValue); |
| 132 } | 132 } |
| 133 | 133 |
| 134 DEFINE_TRACE(CustomElementCallbackInvocation) | 134 DEFINE_TRACE(CustomElementCallbackInvocation) |
| 135 { | 135 { |
| 136 visitor->trace(m_callbacks); | 136 visitor->trace(m_callbacks); |
| 137 CustomElementProcessingStep::trace(visitor); | 137 CustomElementProcessingStep::trace(visitor); |
| 138 } | 138 } |
| 139 | 139 |
| 140 } // namespace blink | 140 } // namespace blink |
| OLD | NEW |