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

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.h

Issue 2007343002: Remove unnecessary includes from Document.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CompositorWorker.cpp now needs LocalFrame.h Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2011 Google Inc. All rights reserved. 9 * Copyright (C) 2011 Google Inc. All rights reserved.
10 * 10 *
(...skipping 13 matching lines...) Expand all
24 * Boston, MA 02110-1301, USA. 24 * Boston, MA 02110-1301, USA.
25 * 25 *
26 */ 26 */
27 27
28 #ifndef Document_h 28 #ifndef Document_h
29 #define Document_h 29 #define Document_h
30 30
31 #include "bindings/core/v8/ExceptionStatePlaceholder.h" 31 #include "bindings/core/v8/ExceptionStatePlaceholder.h"
32 #include "bindings/core/v8/ScriptValue.h" 32 #include "bindings/core/v8/ScriptValue.h"
33 #include "core/CoreExport.h" 33 #include "core/CoreExport.h"
34 #include "core/animation/AnimationClock.h"
35 #include "core/dom/ContainerNode.h" 34 #include "core/dom/ContainerNode.h"
36 #include "core/dom/DocumentEncodingData.h" 35 #include "core/dom/DocumentEncodingData.h"
37 #include "core/dom/DocumentInit.h" 36 #include "core/dom/DocumentInit.h"
38 #include "core/dom/DocumentLifecycle.h" 37 #include "core/dom/DocumentLifecycle.h"
39 #include "core/dom/DocumentTiming.h" 38 #include "core/dom/DocumentTiming.h"
40 #include "core/dom/ExecutionContext.h" 39 #include "core/dom/ExecutionContext.h"
41 #include "core/dom/MutationObserver.h" 40 #include "core/dom/MutationObserver.h"
42 #include "core/dom/TextLinkColors.h" 41 #include "core/dom/TextLinkColors.h"
43 #include "core/dom/TreeScope.h" 42 #include "core/dom/TreeScope.h"
44 #include "core/dom/UserActionElementSet.h" 43 #include "core/dom/UserActionElementSet.h"
45 #include "core/dom/ViewportDescription.h" 44 #include "core/dom/ViewportDescription.h"
46 #include "core/dom/custom/V0CustomElement.h" 45 #include "core/dom/custom/V0CustomElement.h"
47 #include "core/fetch/ClientHintsPreferences.h" 46 #include "core/fetch/ClientHintsPreferences.h"
48 #include "core/frame/DOMTimerCoordinator.h" 47 #include "core/frame/DOMTimerCoordinator.h"
49 #include "core/frame/HostsUsingFeatures.h" 48 #include "core/frame/HostsUsingFeatures.h"
50 #include "core/frame/LocalDOMWindow.h"
51 #include "core/frame/VisualViewport.h"
52 #include "core/html/CollectionType.h"
53 #include "core/html/parser/ParserSynchronizationPolicy.h" 49 #include "core/html/parser/ParserSynchronizationPolicy.h"
54 #include "core/page/PageVisibilityState.h" 50 #include "core/page/PageVisibilityState.h"
55 #include "platform/Length.h" 51 #include "platform/Length.h"
56 #include "platform/Timer.h" 52 #include "platform/Timer.h"
57 #include "platform/heap/Handle.h"
58 #include "platform/weborigin/KURL.h" 53 #include "platform/weborigin/KURL.h"
59 #include "platform/weborigin/ReferrerPolicy.h" 54 #include "platform/weborigin/ReferrerPolicy.h"
60 #include "public/platform/WebFocusType.h" 55 #include "public/platform/WebFocusType.h"
61 #include "wtf/HashSet.h" 56 #include "wtf/HashSet.h"
62 #include "wtf/OwnPtr.h" 57 #include "wtf/OwnPtr.h"
63 #include "wtf/PassOwnPtr.h" 58 #include "wtf/PassOwnPtr.h"
64 #include "wtf/PassRefPtr.h" 59 #include "wtf/PassRefPtr.h"
65 60
66 namespace blink { 61 namespace blink {
67 62
63 class AnimationClock;
68 class AnimationTimeline; 64 class AnimationTimeline;
69 class AXObjectCache; 65 class AXObjectCache;
70 class Attr; 66 class Attr;
71 class CDATASection; 67 class CDATASection;
72 class CSSStyleDeclaration; 68 class CSSStyleDeclaration;
73 class CSSStyleSheet; 69 class CSSStyleSheet;
74 class CancellableTaskFactory; 70 class CancellableTaskFactory;
75 class CanvasFontCache; 71 class CanvasFontCache;
76 class CanvasRenderingContext2D; 72 class CanvasRenderingContext2D;
77 class CanvasRenderingContext2DOrWebGLRenderingContext; 73 class CanvasRenderingContext2DOrWebGLRenderingContext;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 class HTMLLinkElement; 117 class HTMLLinkElement;
122 class HTMLScriptElementOrSVGScriptElement; 118 class HTMLScriptElementOrSVGScriptElement;
123 class HitTestRequest; 119 class HitTestRequest;
124 class IdleRequestCallback; 120 class IdleRequestCallback;
125 class IdleRequestOptions; 121 class IdleRequestOptions;
126 class InputDeviceCapabilities; 122 class InputDeviceCapabilities;
127 class IntersectionObserverController; 123 class IntersectionObserverController;
128 class LayoutPoint; 124 class LayoutPoint;
129 class LayoutViewItem; 125 class LayoutViewItem;
130 class LiveNodeListBase; 126 class LiveNodeListBase;
127 class LocalDOMWindow;
131 class Locale; 128 class Locale;
132 class LocalFrame; 129 class LocalFrame;
133 class Location; 130 class Location;
134 class MainThreadTaskRunner; 131 class MainThreadTaskRunner;
135 class MediaQueryListListener; 132 class MediaQueryListListener;
136 class MediaQueryMatcher; 133 class MediaQueryMatcher;
137 class NodeFilter; 134 class NodeFilter;
138 class NodeIntersectionObserverData; 135 class NodeIntersectionObserverData;
139 class NodeIterator; 136 class NodeIterator;
140 class NthIndexCache; 137 class NthIndexCache;
(...skipping 21 matching lines...) Expand all
162 class StyleResolver; 159 class StyleResolver;
163 class StyleSheet; 160 class StyleSheet;
164 class StyleSheetList; 161 class StyleSheetList;
165 class Text; 162 class Text;
166 class TextAutosizer; 163 class TextAutosizer;
167 class Touch; 164 class Touch;
168 class TouchList; 165 class TouchList;
169 class TransformSource; 166 class TransformSource;
170 class TreeWalker; 167 class TreeWalker;
171 class VisitedLinkState; 168 class VisitedLinkState;
169 class VisualViewport;
172 class WebGLRenderingContext; 170 class WebGLRenderingContext;
173 enum class SelectionBehaviorOnFocus; 171 enum class SelectionBehaviorOnFocus;
174 struct AnnotatedRegionValue; 172 struct AnnotatedRegionValue;
175 struct FocusParams; 173 struct FocusParams;
176 struct IconURL; 174 struct IconURL;
177 175
178 using MouseEventWithHitTestResults = EventWithHitTestResults<PlatformMouseEvent> ; 176 using MouseEventWithHitTestResults = EventWithHitTestResults<PlatformMouseEvent> ;
179 using ExceptionCode = int; 177 using ExceptionCode = int;
180 178
181 enum StyleResolverUpdateMode { 179 enum StyleResolverUpdateMode {
(...skipping 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1454 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1452 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1455 1453
1456 } // namespace blink 1454 } // namespace blink
1457 1455
1458 #ifndef NDEBUG 1456 #ifndef NDEBUG
1459 // Outside the WebCore namespace for ease of invocation from gdb. 1457 // Outside the WebCore namespace for ease of invocation from gdb.
1460 CORE_EXPORT void showLiveDocumentInstances(); 1458 CORE_EXPORT void showLiveDocumentInstances();
1461 #endif 1459 #endif
1462 1460
1463 #endif // Document_h 1461 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698