| Index: third_party/WebKit/Source/core/dom/ScriptLoader.h
|
| diff --git a/third_party/WebKit/Source/core/dom/ScriptLoader.h b/third_party/WebKit/Source/core/dom/ScriptLoader.h
|
| index d483642b99a1eb5a42b72d952384d2c387adde45..295c12c9250ccdb07d50c8265da4b9d5066f4d3d 100644
|
| --- a/third_party/WebKit/Source/core/dom/ScriptLoader.h
|
| +++ b/third_party/WebKit/Source/core/dom/ScriptLoader.h
|
| @@ -107,9 +107,6 @@ class CORE_EXPORT ScriptLoader : public GarbageCollectedFinalized<ScriptLoader>,
|
| return m_pendingScript && m_pendingScript->errorOccurred();
|
| }
|
|
|
| - // Clears the connection to the PendingScript (and Element and Resource).
|
| - void detach();
|
| -
|
| bool wasCreatedDuringDocumentWrite() { return m_createdDuringDocumentWrite; }
|
|
|
| bool disallowedFetchForDocWrittenScript() {
|
| @@ -136,6 +133,9 @@ class CORE_EXPORT ScriptLoader : public GarbageCollectedFinalized<ScriptLoader>,
|
|
|
| ScriptLoaderClient* client() const;
|
|
|
| + // Clears the connection to the PendingScript.
|
| + void detachPendingScript();
|
| +
|
| // PendingScriptClient
|
| void pendingScriptFinished(PendingScript*) override;
|
|
|
|
|