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 ae027ad121134bcc9950fa5ba831a1682f539871..77a4b9323707240a761ef7bdad885afd58a1de41 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; |
- OwnPtrWillBeMember<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; |
+ |
+ OwnPtrWillBeMember<PendingScript> m_pendingScript; |
}; |
ScriptLoader* toScriptLoaderIfPossible(Element*); |