Index: Source/core/dom/Document.h |
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h |
index 63ff3db1b7047633e8228410efc46c169e7df531..4bca40b6565322e34c4fb9d34d5b54abec7be592 100644 |
--- a/Source/core/dom/Document.h |
+++ b/Source/core/dom/Document.h |
@@ -45,6 +45,7 @@ |
#include "core/dom/UserActionElementSet.h" |
#include "core/dom/ViewportDescription.h" |
#include "core/dom/custom/CustomElement.h" |
+#include "core/frame/LocalDOMWindow.h" |
#include "core/html/CollectionType.h" |
#include "core/page/FocusType.h" |
#include "core/page/PageVisibilityState.h" |
@@ -76,6 +77,7 @@ class ContextFeatures; |
class CustomElementMicrotaskRunQueue; |
class CustomElementRegistrationContext; |
class DOMImplementation; |
+class DOMWindow; |
class DocumentFragment; |
class DocumentLifecycleNotifier; |
class DocumentLoader; |
@@ -114,7 +116,6 @@ class HitTestRequest; |
class LayoutPoint; |
class LiveNodeListBase; |
class Locale; |
-class LocalDOMWindow; |
class LocalFrame; |
class Location; |
class MainThreadTaskRunner; |
@@ -939,7 +940,7 @@ public: |
bool isDelayingLoadEvent(); |
void loadPluginsSoon(); |
- PassRefPtrWillBeRawPtr<Touch> createTouch(LocalDOMWindow*, EventTarget*, int identifier, double pageX, double pageY, double screenX, double screenY, double radiusX, double radiusY, float rotationAngle, float force) const; |
+ PassRefPtrWillBeRawPtr<Touch> createTouch(DOMWindow*, EventTarget*, int identifier, double pageX, double pageY, double screenX, double screenY, double radiusX, double radiusY, float rotationAngle, float force) const; |
PassRefPtrWillBeRawPtr<TouchList> createTouchList(WillBeHeapVector<RefPtrWillBeMember<Touch>>&) const; |
const DocumentTiming& timing() const { return m_documentTiming; } |