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

Unified Diff: Source/core/dom/custom/CustomElementCallbackQueue.cpp

Issue 554333002: Modify CustomElementProcessingStep::isCreated()'s name (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rename to isCreatedCallback. Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/dom/custom/CustomElementCallbackQueue.cpp
diff --git a/Source/core/dom/custom/CustomElementCallbackQueue.cpp b/Source/core/dom/custom/CustomElementCallbackQueue.cpp
index f439ccda1f285653d456e4e68eea729d3f7d837f..72e51b896a5e574812873d2fe3eb44b3ef5e97af 100644
--- a/Source/core/dom/custom/CustomElementCallbackQueue.cpp
+++ b/Source/core/dom/custom/CustomElementCallbackQueue.cpp
@@ -52,7 +52,7 @@ bool CustomElementCallbackQueue::processInElementQueue(ElementQueueId caller)
bool didWork = false;
while (m_index < m_queue.size() && owner() == caller) {
- m_inCreatedCallback = m_queue[m_index]->isCreated();
+ m_inCreatedCallback = m_queue[m_index]->isCreatedCallback();
// dispatch() may cause recursion which steals this callback
// queue and reenters processInQueue. owner() == caller
« no previous file with comments | « Source/core/dom/custom/CustomElementCallbackInvocation.cpp ('k') | Source/core/dom/custom/CustomElementProcessingStep.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698