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

Unified Diff: third_party/WebKit/Source/core/dom/PendingScript.h

Issue 2693423002: Do not re-initialize PendingScript in HTMLParserScriptRunner (Closed)
Patch Set: Reflect comments Created 3 years, 10 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
Index: third_party/WebKit/Source/core/dom/PendingScript.h
diff --git a/third_party/WebKit/Source/core/dom/PendingScript.h b/third_party/WebKit/Source/core/dom/PendingScript.h
index 6c3dfafa60cbf828df2776f27f5a8b0f9a41ae72..6b8c0cb69c2803acd2840fe791d377a51cd3f798 100644
--- a/third_party/WebKit/Source/core/dom/PendingScript.h
+++ b/third_party/WebKit/Source/core/dom/PendingScript.h
@@ -70,13 +70,16 @@ class CORE_EXPORT PendingScript final
WTF_MAKE_NONCOPYABLE(PendingScript);
public:
+ // For script from an external file.
static PendingScript* create(Element*, ScriptResource*);
+ // For inline script.
+ static PendingScript* create(Element*, const TextPosition&);
+
+ static PendingScript* createForTesting(ScriptResource*);
+
~PendingScript() override;
TextPosition startingPosition() const { return m_startingPosition; }
- void setStartingPosition(const TextPosition& position) {
- m_startingPosition = position;
- }
void markParserBlockingLoadStartTime();
// Returns the time the load of this script started blocking the parser, or
// zero if this script hasn't yet blocked the parser, in
@@ -88,10 +91,7 @@ class CORE_EXPORT PendingScript final
void watchForLoad(PendingScriptClient*);
void stopWatchingForLoad();
- Element* element() const { return m_element.get(); }
- void setElement(Element*);
-
- void setScriptResource(ScriptResource*);
+ Element* element() const;
DECLARE_TRACE();
@@ -107,7 +107,10 @@ class CORE_EXPORT PendingScript final
void dispose();
private:
- PendingScript(Element*, ScriptResource*);
+ PendingScript(Element*,
+ ScriptResource*,
+ const TextPosition&,
+ bool isForTesting = false);
PendingScript() = delete;
// ScriptResourceClient
@@ -119,13 +122,21 @@ class CORE_EXPORT PendingScript final
void onPurgeMemory() override;
bool m_watchingForLoad;
+
+ // |m_element| must points to the corresponding ScriptLoader's element and
+ // thus must be non-null before dispose() is called (except for unit tests).
Member<Element> m_element;
+
TextPosition m_startingPosition; // Only used for inline script tags.
bool m_integrityFailure;
double m_parserBlockingLoadStartTime;
Member<ScriptStreamer> m_streamer;
Member<PendingScriptClient> m_client;
+
+ // This flag is used to skip non-null checks of |m_element| in unit tests,
+ // because |m_element| can be null in unit tests.
+ const bool m_isForTesting;
haraken 2017/02/22 00:30:04 Or would there be an option to create a dummy elem
hiroshige 2017/02/22 01:25:41 Possibly, but it should be done separately not to
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698