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 6b53a6656812d0dddcb6820ace7ca86db20bc008..e4a53a52d24342e8c45483012247033d814406c1 100644 |
--- a/third_party/WebKit/Source/core/dom/ScriptLoader.h |
+++ b/third_party/WebKit/Source/core/dom/ScriptLoader.h |
@@ -108,17 +108,17 @@ private: |
String m_characterEncoding; |
String m_fallbackCharacterEncoding; |
- PendingScript m_pendingScript; |
- |
bool m_parserInserted : 1; |
bool m_isExternalScript : 1; |
bool m_alreadyStarted : 1; |
bool m_haveFiredLoad : 1; |
bool m_willBeParserExecuted : 1; // Same as "The parser will handle executing the script." |
bool m_readyToBeParserExecuted : 1; |
+ bool m_willExecuteInOrder : 1; |
bool m_willExecuteWhenDocumentFinishedParsing : 1; |
bool m_forceAsync : 1; |
- bool m_willExecuteInOrder : 1; |
+ |
+ PendingScript m_pendingScript; |
}; |
ScriptLoader* toScriptLoaderIfPossible(Element*); |