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

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

Issue 288323004: HTML Imports: Get rid of needsProcessOrStop() from dom/custom/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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/CustomElementMicrotaskResolutionStep.cpp
diff --git a/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp b/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
index 1dce4a531cfe4402416370045b820e4a4a8bf32d..556679c5a02eb5dc27a45d0105f0d60c80f66abe 100644
--- a/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
+++ b/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
@@ -55,12 +55,7 @@ CustomElementMicrotaskResolutionStep::~CustomElementMicrotaskResolutionStep()
CustomElementMicrotaskStep::Result CustomElementMicrotaskResolutionStep::process()
{
m_context->resolve(m_element.get(), m_descriptor);
- return CustomElementMicrotaskStep::ContinueWithRemoving;
-}
-
-bool CustomElementMicrotaskResolutionStep::needsProcessOrStop() const
-{
- return true;
+ return CustomElementMicrotaskStep::FinishedProcessing;
}
#if !defined(NDEBUG)

Powered by Google App Engine
This is Rietveld 408576698