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

Unified Diff: Source/core/dom/ScriptLoader.h

Issue 669503003: Revert of Refactor Script(Loader|Runner): don't access Resources all over the place... (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « Source/core/dom/PendingScript.cpp ('k') | Source/core/dom/ScriptLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ScriptLoader.h
diff --git a/Source/core/dom/ScriptLoader.h b/Source/core/dom/ScriptLoader.h
index d657e8316354301cbf3f07a7931d83d635b2c64b..0fa6d52ce9a7970a2937952072177b6fe40f4c69 100644
--- a/Source/core/dom/ScriptLoader.h
+++ b/Source/core/dom/ScriptLoader.h
@@ -21,7 +21,6 @@
#ifndef ScriptLoader_h
#define ScriptLoader_h
-#include "core/dom/PendingScript.h"
#include "core/fetch/FetchRequest.h"
#include "core/fetch/ResourceClient.h"
#include "core/fetch/ResourcePtr.h"
@@ -49,7 +48,7 @@
String scriptCharset() const { return m_characterEncoding; }
String scriptContent() const;
void executeScript(const ScriptSourceCode&, double* compilationFinishTime = 0);
- void execute();
+ void execute(ScriptResource*);
// XML parser calls these
void dispatchLoadEvent();
@@ -73,8 +72,6 @@
void handleSourceAttribute(const String& sourceUrl);
void handleAsyncAttribute();
- bool isReady() const { return m_pendingScript.isReady(); }
-
private:
ScriptLoader(Element*, bool createdByParser, bool isEvaluated);
@@ -82,6 +79,7 @@
bool isScriptForEventSupported() const;
bool fetchScript(const String& sourceUrl, FetchRequest::DeferOption);
+ void stopLoadRequest();
ScriptLoaderClient* client() const;
@@ -103,8 +101,6 @@
bool m_willExecuteInOrder : 1;
String m_characterEncoding;
String m_fallbackCharacterEncoding;
-
- PendingScript m_pendingScript;
};
ScriptLoader* toScriptLoaderIfPossible(Element*);
« no previous file with comments | « Source/core/dom/PendingScript.cpp ('k') | Source/core/dom/ScriptLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698