Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Side by Side Diff: third_party/WebKit/Source/core/dom/custom/CustomElementCallbackInvocation.cpp

Issue 1858163002: Rename inDocument() to inShadowIncludingDocument() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698