Index: third_party/WebKit/Source/core/loader/DocumentLoader.h |
diff --git a/third_party/WebKit/Source/core/loader/DocumentLoader.h b/third_party/WebKit/Source/core/loader/DocumentLoader.h |
index 8023984bd3ca67de0c614a610c35afde849951c4..ff724a8c61814465ad3e21c7e4edfb977c189d34 100644 |
--- a/third_party/WebKit/Source/core/loader/DocumentLoader.h |
+++ b/third_party/WebKit/Source/core/loader/DocumentLoader.h |
@@ -30,6 +30,7 @@ |
#ifndef DocumentLoader_h |
#define DocumentLoader_h |
+#include <memory> |
#include "core/CoreExport.h" |
#include "core/dom/ViewportDescription.h" |
#include "core/dom/WeakIdentifierMap.h" |
@@ -51,7 +52,6 @@ |
#include "public/platform/WebLoadingBehaviorFlag.h" |
#include "wtf/HashSet.h" |
#include "wtf/RefPtr.h" |
-#include <memory> |
namespace blink { |
@@ -283,12 +283,7 @@ class CORE_EXPORT DocumentLoader |
bool m_wasBlockedAfterCSP; |
- enum State { |
- NotStarted, |
- Provisional, |
- Committed, |
- SentDidFinishLoad |
- }; |
+ enum State { NotStarted, Provisional, Committed, SentDidFinishLoad }; |
State m_state; |
// Used to protect against reentrancy into dataReceived(). |