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

Unified Diff: Source/core/dom/custom/CustomElementMicrotaskStep.h

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/CustomElementMicrotaskStep.h
diff --git a/Source/core/dom/custom/CustomElementMicrotaskStep.h b/Source/core/dom/custom/CustomElementMicrotaskStep.h
index 80fd9724a98cc702c967d3f8a6539f9e136d7d70..c4addd7f0c9eb7b85b32917324d4c2f791d7bca5 100644
--- a/Source/core/dom/custom/CustomElementMicrotaskStep.h
+++ b/Source/core/dom/custom/CustomElementMicrotaskStep.h
@@ -43,13 +43,11 @@ public:
virtual ~CustomElementMicrotaskStep() { }
enum Result {
- ContinueWithRemoving = 0,
- ShouldStop = 1 << 0,
- ShouldRemain = 1 << 1
+ Processing,
+ FinishedProcessing
};
virtual Result process() = 0;
- virtual bool needsProcessOrStop() const = 0;
virtual void trace(Visitor*) { }
« no previous file with comments | « Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp ('k') | Source/core/dom/custom/CustomElementScheduler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698