Index: WebCore/html/parser/HTMLScriptRunner.h |
=================================================================== |
--- WebCore/html/parser/HTMLScriptRunner.h (revision 69799) |
+++ WebCore/html/parser/HTMLScriptRunner.h (working copy) |
@@ -27,7 +27,6 @@ |
#define HTMLScriptRunner_h |
#include "PendingScript.h" |
-#include <wtf/Deque.h> |
#include <wtf/Noncopyable.h> |
#include <wtf/PassRefPtr.h> |
@@ -57,7 +56,6 @@ |
bool executeScriptsWaitingForLoad(CachedResource*); |
bool hasScriptsWaitingForStylesheets() const { return m_hasScriptsWaitingForStylesheets; } |
bool executeScriptsWaitingForStylesheets(); |
- bool executeScriptsWaitingForParsing(); |
bool isExecutingScript() const { return !!m_scriptNestingLevel; } |
@@ -73,7 +71,6 @@ |
bool executeParsingBlockingScripts(); |
void requestParsingBlockingScript(Element*); |
- void requestDeferredScript(Element*); |
bool requestPendingScript(PendingScript&, Element*) const; |
void runScript(Element*, int startingLineNumber); |
@@ -87,7 +84,6 @@ |
Document* m_document; |
HTMLScriptRunnerHost* m_host; |
PendingScript m_parsingBlockingScript; |
- Deque<PendingScript> m_scriptsToExecuteAfterParsing; // http://www.whatwg.org/specs/web-apps/current-work/#list-of-scripts-that-will-execute-when-the-document-has-finished-parsing |
unsigned m_scriptNestingLevel; |
// We only want stylesheet loads to trigger script execution if script |