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

Unified Diff: Source/core/html/parser/HTMLConstructionSite.h

Issue 555223002: Revert of HTMLConstructionSite: avoid n^2 running time for large scripts. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « no previous file | Source/core/html/parser/HTMLConstructionSite.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/parser/HTMLConstructionSite.h
diff --git a/Source/core/html/parser/HTMLConstructionSite.h b/Source/core/html/parser/HTMLConstructionSite.h
index 9d85b5e3cfa13ca217b81648594f131eceab39a7..48be3b05cd51924a4c44ada45cacdb078eef3c85 100644
--- a/Source/core/html/parser/HTMLConstructionSite.h
+++ b/Source/core/html/parser/HTMLConstructionSite.h
@@ -92,14 +92,6 @@
AllWhitespace,
};
-enum FlushMode {
- // Flush pending text. Flush queued tasks.
- FlushAlways,
-
- // Flush pending text if node has length limit. Flush queued tasks.
- FlushIfAtTextLimit,
-};
-
class AtomicHTMLToken;
class Document;
class Element;
@@ -121,16 +113,16 @@
void executeQueuedTasks();
// flushPendingText turns pending text into queued Text insertions, but does not execute them.
- void flushPendingText(FlushMode);
+ void flushPendingText();
// Called before every token in HTMLTreeBuilder::processToken, thus inlined:
- void flush(FlushMode mode)
+ void flush()
{
if (!hasPendingTasks())
return;
- flushPendingText(mode);
+ flushPendingText();
executeQueuedTasks(); // NOTE: Possible reentrancy via JavaScript execution.
- ASSERT(mode == FlushIfAtTextLimit || !hasPendingTasks());
+ ASSERT(!hasPendingTasks());
}
bool hasPendingTasks()
« no previous file with comments | « no previous file | Source/core/html/parser/HTMLConstructionSite.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698