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

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

Issue 332933002: Qualify the generated includes in core (partial) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « Source/core/dom/DOMImplementation.cpp ('k') | Source/core/dom/DocumentInit.cpp » ('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, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 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) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 10 matching lines...) Expand all
21 * 21 *
22 * You should have received a copy of the GNU Library General Public License 22 * You should have received a copy of the GNU Library General Public License
23 * along with this library; see the file COPYING.LIB. If not, write to 23 * along with this library; see the file COPYING.LIB. If not, write to
24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 * Boston, MA 02110-1301, USA. 25 * Boston, MA 02110-1301, USA.
26 */ 26 */
27 27
28 #include "config.h" 28 #include "config.h"
29 #include "core/dom/Document.h" 29 #include "core/dom/Document.h"
30 30
31 #include "HTMLElementFactory.h"
32 #include "HTMLNames.h"
33 #include "RuntimeEnabledFeatures.h"
34 #include "SVGElementFactory.h"
35 #include "SVGNames.h"
36 #include "XMLNSNames.h"
37 #include "XMLNames.h"
38 #include "bindings/v8/CustomElementConstructorBuilder.h" 31 #include "bindings/v8/CustomElementConstructorBuilder.h"
39 #include "bindings/v8/Dictionary.h" 32 #include "bindings/v8/Dictionary.h"
40 #include "bindings/v8/ExceptionMessages.h" 33 #include "bindings/v8/ExceptionMessages.h"
41 #include "bindings/v8/ExceptionState.h" 34 #include "bindings/v8/ExceptionState.h"
42 #include "bindings/v8/ExceptionStatePlaceholder.h" 35 #include "bindings/v8/ExceptionStatePlaceholder.h"
43 #include "bindings/v8/ScriptController.h" 36 #include "bindings/v8/ScriptController.h"
37 #include "core/HTMLElementFactory.h"
38 #include "core/HTMLNames.h"
39 #include "core/SVGElementFactory.h"
40 #include "core/SVGNames.h"
41 #include "core/XMLNSNames.h"
42 #include "core/XMLNames.h"
44 #include "core/accessibility/AXObjectCache.h" 43 #include "core/accessibility/AXObjectCache.h"
45 #include "core/animation/AnimationTimeline.h" 44 #include "core/animation/AnimationTimeline.h"
46 #include "core/animation/DocumentAnimations.h" 45 #include "core/animation/DocumentAnimations.h"
47 #include "core/css/CSSFontSelector.h" 46 #include "core/css/CSSFontSelector.h"
48 #include "core/css/CSSStyleDeclaration.h" 47 #include "core/css/CSSStyleDeclaration.h"
49 #include "core/css/CSSStyleSheet.h" 48 #include "core/css/CSSStyleSheet.h"
50 #include "core/css/MediaQueryMatcher.h" 49 #include "core/css/MediaQueryMatcher.h"
51 #include "core/css/StylePropertySet.h" 50 #include "core/css/StylePropertySet.h"
52 #include "core/css/StyleSheetContents.h" 51 #include "core/css/StyleSheetContents.h"
53 #include "core/css/StyleSheetList.h" 52 #include "core/css/StyleSheetList.h"
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 #include "core/rendering/compositing/RenderLayerCompositor.h" 172 #include "core/rendering/compositing/RenderLayerCompositor.h"
174 #include "core/svg/SVGDocumentExtensions.h" 173 #include "core/svg/SVGDocumentExtensions.h"
175 #include "core/svg/SVGFontFaceElement.h" 174 #include "core/svg/SVGFontFaceElement.h"
176 #include "core/svg/SVGStyleElement.h" 175 #include "core/svg/SVGStyleElement.h"
177 #include "core/svg/SVGUseElement.h" 176 #include "core/svg/SVGUseElement.h"
178 #include "core/workers/SharedWorkerRepositoryClient.h" 177 #include "core/workers/SharedWorkerRepositoryClient.h"
179 #include "core/xml/XSLTProcessor.h" 178 #include "core/xml/XSLTProcessor.h"
180 #include "core/xml/parser/XMLDocumentParser.h" 179 #include "core/xml/parser/XMLDocumentParser.h"
181 #include "platform/DateComponents.h" 180 #include "platform/DateComponents.h"
182 #include "platform/Language.h" 181 #include "platform/Language.h"
182 #include "platform/RuntimeEnabledFeatures.h"
183 #include "platform/TraceEvent.h" 183 #include "platform/TraceEvent.h"
184 #include "platform/network/ContentSecurityPolicyParsers.h" 184 #include "platform/network/ContentSecurityPolicyParsers.h"
185 #include "platform/network/HTTPParsers.h" 185 #include "platform/network/HTTPParsers.h"
186 #include "platform/scroll/ScrollbarTheme.h" 186 #include "platform/scroll/ScrollbarTheme.h"
187 #include "platform/text/PlatformLocale.h" 187 #include "platform/text/PlatformLocale.h"
188 #include "platform/text/SegmentedString.h" 188 #include "platform/text/SegmentedString.h"
189 #include "platform/weborigin/OriginAccessEntry.h" 189 #include "platform/weborigin/OriginAccessEntry.h"
190 #include "platform/weborigin/SchemeRegistry.h" 190 #include "platform/weborigin/SchemeRegistry.h"
191 #include "platform/weborigin/SecurityOrigin.h" 191 #include "platform/weborigin/SecurityOrigin.h"
192 #include "public/platform/Platform.h" 192 #include "public/platform/Platform.h"
(...skipping 5644 matching lines...) Expand 10 before | Expand all | Expand 10 after
5837 visitor->trace(m_compositorPendingAnimations); 5837 visitor->trace(m_compositorPendingAnimations);
5838 visitor->trace(m_contextDocument); 5838 visitor->trace(m_contextDocument);
5839 visitor->registerWeakMembers<Document, &Document::clearWeakMembers>(this); 5839 visitor->registerWeakMembers<Document, &Document::clearWeakMembers>(this);
5840 DocumentSupplementable::trace(visitor); 5840 DocumentSupplementable::trace(visitor);
5841 TreeScope::trace(visitor); 5841 TreeScope::trace(visitor);
5842 ContainerNode::trace(visitor); 5842 ContainerNode::trace(visitor);
5843 ExecutionContext::trace(visitor); 5843 ExecutionContext::trace(visitor);
5844 } 5844 }
5845 5845
5846 } // namespace WebCore 5846 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/DOMImplementation.cpp ('k') | Source/core/dom/DocumentInit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698