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

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

Issue 343923004: Remove some includes from Document.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/bindings/v8/ScriptEventListener.cpp ('k') | Source/core/rendering/RenderObject.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 21 matching lines...) Expand all
32 #include "bindings/v8/ScriptValue.h" 32 #include "bindings/v8/ScriptValue.h"
33 #include "core/animation/AnimationClock.h" 33 #include "core/animation/AnimationClock.h"
34 #include "core/animation/CompositorPendingAnimations.h" 34 #include "core/animation/CompositorPendingAnimations.h"
35 #include "core/dom/ContainerNode.h" 35 #include "core/dom/ContainerNode.h"
36 #include "core/dom/DocumentEncodingData.h" 36 #include "core/dom/DocumentEncodingData.h"
37 #include "core/dom/DocumentInit.h" 37 #include "core/dom/DocumentInit.h"
38 #include "core/dom/DocumentLifecycle.h" 38 #include "core/dom/DocumentLifecycle.h"
39 #include "core/dom/DocumentSupplementable.h" 39 #include "core/dom/DocumentSupplementable.h"
40 #include "core/dom/DocumentTiming.h" 40 #include "core/dom/DocumentTiming.h"
41 #include "core/dom/ExecutionContext.h" 41 #include "core/dom/ExecutionContext.h"
42 #include "core/dom/IconURL.h"
43 #include "core/dom/MutationObserver.h" 42 #include "core/dom/MutationObserver.h"
44 #include "core/dom/QualifiedName.h"
45 #include "core/dom/TextLinkColors.h" 43 #include "core/dom/TextLinkColors.h"
46 #include "core/dom/TreeScope.h" 44 #include "core/dom/TreeScope.h"
47 #include "core/dom/UserActionElementSet.h" 45 #include "core/dom/UserActionElementSet.h"
48 #include "core/dom/ViewportDescription.h" 46 #include "core/dom/ViewportDescription.h"
49 #include "core/dom/custom/CustomElement.h" 47 #include "core/dom/custom/CustomElement.h"
50 #include "core/html/CollectionType.h" 48 #include "core/html/CollectionType.h"
51 #include "core/page/FocusType.h" 49 #include "core/page/FocusType.h"
52 #include "core/page/PageVisibilityState.h" 50 #include "core/page/PageVisibilityState.h"
53 #include "core/rendering/HitTestRequest.h"
54 #include "platform/Length.h" 51 #include "platform/Length.h"
55 #include "platform/Timer.h" 52 #include "platform/Timer.h"
56 #include "platform/heap/Handle.h" 53 #include "platform/heap/Handle.h"
57 #include "platform/weborigin/KURL.h" 54 #include "platform/weborigin/KURL.h"
58 #include "platform/weborigin/ReferrerPolicy.h" 55 #include "platform/weborigin/ReferrerPolicy.h"
59 #include "wtf/HashSet.h" 56 #include "wtf/HashSet.h"
60 #include "wtf/OwnPtr.h" 57 #include "wtf/OwnPtr.h"
61 #include "wtf/PassOwnPtr.h" 58 #include "wtf/PassOwnPtr.h"
62 #include "wtf/PassRefPtr.h" 59 #include "wtf/PassRefPtr.h"
63 #include "wtf/WeakPtr.h" 60 #include "wtf/WeakPtr.h"
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 class Location; 131 class Location;
135 class MainThreadTaskRunner; 132 class MainThreadTaskRunner;
136 class MediaQueryList; 133 class MediaQueryList;
137 class MediaQueryMatcher; 134 class MediaQueryMatcher;
138 class MouseEventWithHitTestResults; 135 class MouseEventWithHitTestResults;
139 class NodeFilter; 136 class NodeFilter;
140 class NodeIterator; 137 class NodeIterator;
141 class Page; 138 class Page;
142 class PlatformMouseEvent; 139 class PlatformMouseEvent;
143 class ProcessingInstruction; 140 class ProcessingInstruction;
141 class QualifiedName;
144 class Range; 142 class Range;
145 class RegisteredEventListener; 143 class RegisteredEventListener;
146 class RenderView; 144 class RenderView;
147 class RequestAnimationFrameCallback; 145 class RequestAnimationFrameCallback;
148 class ResourceFetcher; 146 class ResourceFetcher;
149 class SVGDocumentExtensions; 147 class SVGDocumentExtensions;
150 class SVGUseElement; 148 class SVGUseElement;
151 class ScriptElementData; 149 class ScriptElementData;
152 class ScriptResource; 150 class ScriptResource;
153 class ScriptRunner; 151 class ScriptRunner;
(...skipping 13 matching lines...) Expand all
167 class TextAutosizer; 165 class TextAutosizer;
168 class Touch; 166 class Touch;
169 class TouchList; 167 class TouchList;
170 class TransformSource; 168 class TransformSource;
171 class TreeWalker; 169 class TreeWalker;
172 class VisitedLinkState; 170 class VisitedLinkState;
173 class WebGLRenderingContext; 171 class WebGLRenderingContext;
174 class XMLHttpRequest; 172 class XMLHttpRequest;
175 173
176 struct AnnotatedRegionValue; 174 struct AnnotatedRegionValue;
175 struct IconURL;
177 176
178 typedef int ExceptionCode; 177 typedef int ExceptionCode;
179 178
180 enum StyleResolverUpdateMode { 179 enum StyleResolverUpdateMode {
181 // Discards the StyleResolver and rebuilds it. 180 // Discards the StyleResolver and rebuilds it.
182 FullStyleUpdate, 181 FullStyleUpdate,
183 // Attempts to use StyleInvalidationAnalysis to avoid discarding the entire StyleResolver. 182 // Attempts to use StyleInvalidationAnalysis to avoid discarding the entire StyleResolver.
184 AnalyzedStyleUpdate 183 AnalyzedStyleUpdate
185 }; 184 };
186 185
(...skipping 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 inline bool Node::isDocumentNode() const 1450 inline bool Node::isDocumentNode() const
1452 { 1451 {
1453 return this == document(); 1452 return this == document();
1454 } 1453 }
1455 1454
1456 Node* eventTargetNodeForDocument(Document*); 1455 Node* eventTargetNodeForDocument(Document*);
1457 1456
1458 } // namespace WebCore 1457 } // namespace WebCore
1459 1458
1460 #endif // Document_h 1459 #endif // Document_h
OLDNEW
« no previous file with comments | « Source/bindings/v8/ScriptEventListener.cpp ('k') | Source/core/rendering/RenderObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698