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

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

Issue 494993002: HTMLConstructionSite: avoid n^2 running time for large scripts. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add FlushMode enum Created 6 years, 4 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 48be3b05cd51924a4c44ada45cacdb078eef3c85..63d1dd27cdba9144b32f6b340a5c2f494d4a7c2f 100644
--- a/Source/core/html/parser/HTMLConstructionSite.h
+++ b/Source/core/html/parser/HTMLConstructionSite.h
@@ -92,6 +92,11 @@ enum WhitespaceMode {
AllWhitespace,
};
+enum FlushMode {
+ MandatoryFlush,
+ FacultativeFlush, // Do not flush if there is no visible changes.
eseidel 2014/08/26 16:26:39 I think you'll find more people who know the word
eustas 2014/08/27 11:31:26 Sounds good. Thanks.
+};
+
class AtomicHTMLToken;
class Document;
class Element;
@@ -113,14 +118,14 @@ public:
void executeQueuedTasks();
// flushPendingText turns pending text into queued Text insertions, but does not execute them.
- void flushPendingText();
+ void flushPendingText(FlushMode);
// Called before every token in HTMLTreeBuilder::processToken, thus inlined:
- void flush()
+ void flush(FlushMode mode)
{
if (!hasPendingTasks())
return;
- flushPendingText();
+ flushPendingText(mode);
executeQueuedTasks(); // NOTE: Possible reentrancy via JavaScript execution.
ASSERT(!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