Index: third_party/WebKit/Source/core/dom/ScriptRunner.h |
diff --git a/third_party/WebKit/Source/core/dom/ScriptRunner.h b/third_party/WebKit/Source/core/dom/ScriptRunner.h |
index 0429bae21edb3cdd8ea6a47b873edfe2088a1008..cc916b38e959cbde0632d1ae4cf36b9b6db2c9ca 100644 |
--- a/third_party/WebKit/Source/core/dom/ScriptRunner.h |
+++ b/third_party/WebKit/Source/core/dom/ScriptRunner.h |
@@ -61,7 +61,7 @@ public: |
void notifyScriptReady(ScriptLoader*, ExecutionType); |
void notifyScriptLoadError(ScriptLoader*, ExecutionType); |
- static void movePendingAsyncScript(Document&, Document&, ScriptLoader*); |
+ static void movePendingScript(Document&, Document&, ScriptLoader*); |
DECLARE_TRACE(); |
@@ -70,9 +70,8 @@ private: |
explicit ScriptRunner(Document*); |
- void addPendingAsyncScript(ScriptLoader*); |
- |
- void movePendingAsyncScript(ScriptRunner*, ScriptLoader*); |
+ void movePendingScript(ScriptRunner*, ScriptLoader*); |
+ bool removePendingInOrderScript(ScriptLoader*); |
void postTask(const WebTraceLocation&); |
@@ -99,7 +98,6 @@ private: |
#endif |
#if !ENABLE(OILPAN) |
- bool m_isDisposed; |
WeakPtrFactory<ScriptRunner> m_weakPointerFactoryForTasks; |
#endif |
}; |