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

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

Issue 2539363003: Don't include ComputedStyle.h where not needed. (Closed)
Patch Set: Add ~HTMLOptGroupElement(). Comment stolen from ~HTMLOptionElement(). Created 4 years 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 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All
7 * rights reserved. 7 * rights reserved.
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 #include "core/dom/TextLinkColors.h" 48 #include "core/dom/TextLinkColors.h"
49 #include "core/dom/TreeScope.h" 49 #include "core/dom/TreeScope.h"
50 #include "core/dom/UserActionElementSet.h" 50 #include "core/dom/UserActionElementSet.h"
51 #include "core/dom/ViewportDescription.h" 51 #include "core/dom/ViewportDescription.h"
52 #include "core/dom/custom/V0CustomElement.h" 52 #include "core/dom/custom/V0CustomElement.h"
53 #include "core/fetch/ClientHintsPreferences.h" 53 #include "core/fetch/ClientHintsPreferences.h"
54 #include "core/frame/DOMTimerCoordinator.h" 54 #include "core/frame/DOMTimerCoordinator.h"
55 #include "core/frame/HostsUsingFeatures.h" 55 #include "core/frame/HostsUsingFeatures.h"
56 #include "core/html/parser/ParserSynchronizationPolicy.h" 56 #include "core/html/parser/ParserSynchronizationPolicy.h"
57 #include "core/page/PageVisibilityState.h" 57 #include "core/page/PageVisibilityState.h"
58 #include "core/style/ComputedStyle.h"
59 #include "platform/Length.h" 58 #include "platform/Length.h"
60 #include "platform/Timer.h" 59 #include "platform/Timer.h"
61 #include "platform/WebTaskRunner.h" 60 #include "platform/WebTaskRunner.h"
62 #include "platform/scroll/ScrollTypes.h" 61 #include "platform/scroll/ScrollTypes.h"
63 #include "platform/weborigin/KURL.h" 62 #include "platform/weborigin/KURL.h"
64 #include "platform/weborigin/ReferrerPolicy.h" 63 #include "platform/weborigin/ReferrerPolicy.h"
65 #include "public/platform/WebFocusType.h" 64 #include "public/platform/WebFocusType.h"
66 #include "public/platform/WebInsecureRequestPolicy.h" 65 #include "public/platform/WebInsecureRequestPolicy.h"
67 #include "wtf/Compiler.h" 66 #include "wtf/Compiler.h"
68 #include "wtf/HashSet.h" 67 #include "wtf/HashSet.h"
69 #include "wtf/PassRefPtr.h" 68 #include "wtf/PassRefPtr.h"
70 #include <memory> 69 #include <memory>
71 70
72 namespace blink { 71 namespace blink {
73 72
74 class AnimationClock; 73 class AnimationClock;
75 class DocumentTimeline; 74 class DocumentTimeline;
76 class AXObjectCache; 75 class AXObjectCache;
77 class Attr; 76 class Attr;
78 class CDATASection; 77 class CDATASection;
79 class CSSStyleSheet; 78 class CSSStyleSheet;
80 class CanvasFontCache; 79 class CanvasFontCache;
81 class CharacterData; 80 class CharacterData;
82 class ChromeClient; 81 class ChromeClient;
83 class CompositorPendingAnimations; 82 class CompositorPendingAnimations;
84 class Comment; 83 class Comment;
84 class ComputedStyle;
85 class ConsoleMessage; 85 class ConsoleMessage;
86 class ContextFeatures; 86 class ContextFeatures;
87 class V0CustomElementMicrotaskRunQueue; 87 class V0CustomElementMicrotaskRunQueue;
88 class V0CustomElementRegistrationContext; 88 class V0CustomElementRegistrationContext;
89 class DOMImplementation; 89 class DOMImplementation;
90 class DOMWindow; 90 class DOMWindow;
91 class DocumentFragment; 91 class DocumentFragment;
92 class DocumentLoader; 92 class DocumentLoader;
93 class DocumentMarkerController; 93 class DocumentMarkerController;
94 class DocumentNameCollection; 94 class DocumentNameCollection;
(...skipping 1619 matching lines...) Expand 10 before | Expand all | Expand 10 after
1714 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1714 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1715 1715
1716 } // namespace blink 1716 } // namespace blink
1717 1717
1718 #ifndef NDEBUG 1718 #ifndef NDEBUG
1719 // Outside the WebCore namespace for ease of invocation from gdb. 1719 // Outside the WebCore namespace for ease of invocation from gdb.
1720 CORE_EXPORT void showLiveDocumentInstances(); 1720 CORE_EXPORT void showLiveDocumentInstances();
1721 #endif 1721 #endif
1722 1722
1723 #endif // Document_h 1723 #endif // Document_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/FontFaceSet.cpp ('k') | third_party/WebKit/Source/core/dom/NodeComputedStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698