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

Side by Side Diff: Source/core/css/resolver/StyleResolver.cpp

Issue 331633003: 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
(...skipping 11 matching lines...) Expand all
22 * 22 *
23 * You should have received a copy of the GNU Library General Public License 23 * You should have received a copy of the GNU Library General Public License
24 * along with this library; see the file COPYING.LIB. If not, write to 24 * along with this library; see the file COPYING.LIB. If not, write to
25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 * Boston, MA 02110-1301, USA. 26 * Boston, MA 02110-1301, USA.
27 */ 27 */
28 28
29 #include "config.h" 29 #include "config.h"
30 #include "core/css/resolver/StyleResolver.h" 30 #include "core/css/resolver/StyleResolver.h"
31 31
32 #include "CSSPropertyNames.h" 32 #include "core/CSSPropertyNames.h"
33 #include "HTMLNames.h" 33 #include "core/HTMLNames.h"
34 #include "RuntimeEnabledFeatures.h" 34 #include "core/StylePropertyShorthand.h"
35 #include "StylePropertyShorthand.h"
36 #include "core/animation/ActiveAnimations.h" 35 #include "core/animation/ActiveAnimations.h"
37 #include "core/animation/AnimatableValue.h" 36 #include "core/animation/AnimatableValue.h"
38 #include "core/animation/Animation.h" 37 #include "core/animation/Animation.h"
39 #include "core/animation/AnimationTimeline.h" 38 #include "core/animation/AnimationTimeline.h"
40 #include "core/animation/css/CSSAnimatableValueFactory.h" 39 #include "core/animation/css/CSSAnimatableValueFactory.h"
41 #include "core/animation/css/CSSAnimations.h" 40 #include "core/animation/css/CSSAnimations.h"
42 #include "core/animation/interpolation/StyleInterpolation.h" 41 #include "core/animation/interpolation/StyleInterpolation.h"
43 #include "core/css/CSSCalculationValue.h" 42 #include "core/css/CSSCalculationValue.h"
44 #include "core/css/CSSDefaultStyleSheets.h" 43 #include "core/css/CSSDefaultStyleSheets.h"
45 #include "core/css/CSSFontSelector.h" 44 #include "core/css/CSSFontSelector.h"
(...skipping 28 matching lines...) Expand all
74 #include "core/dom/shadow/ShadowRoot.h" 73 #include "core/dom/shadow/ShadowRoot.h"
75 #include "core/frame/FrameView.h" 74 #include "core/frame/FrameView.h"
76 #include "core/frame/LocalFrame.h" 75 #include "core/frame/LocalFrame.h"
77 #include "core/html/HTMLIFrameElement.h" 76 #include "core/html/HTMLIFrameElement.h"
78 #include "core/inspector/InspectorInstrumentation.h" 77 #include "core/inspector/InspectorInstrumentation.h"
79 #include "core/rendering/RenderView.h" 78 #include "core/rendering/RenderView.h"
80 #include "core/rendering/style/KeyframeList.h" 79 #include "core/rendering/style/KeyframeList.h"
81 #include "core/svg/SVGDocumentExtensions.h" 80 #include "core/svg/SVGDocumentExtensions.h"
82 #include "core/svg/SVGElement.h" 81 #include "core/svg/SVGElement.h"
83 #include "core/svg/SVGFontFaceElement.h" 82 #include "core/svg/SVGFontFaceElement.h"
83 #include "platform/RuntimeEnabledFeatures.h"
84 #include "wtf/StdLibExtras.h" 84 #include "wtf/StdLibExtras.h"
85 85
86 using namespace std; 86 using namespace std;
87 87
88 namespace { 88 namespace {
89 89
90 using namespace WebCore; 90 using namespace WebCore;
91 91
92 void setAnimationUpdateIfNeeded(StyleResolverState& state, Element& element) 92 void setAnimationUpdateIfNeeded(StyleResolverState& state, Element& element)
93 { 93 {
(...skipping 1413 matching lines...) Expand 10 before | Expand all | Expand 10 after
1507 visitor->trace(m_viewportStyleResolver); 1507 visitor->trace(m_viewportStyleResolver);
1508 visitor->trace(m_features); 1508 visitor->trace(m_features);
1509 visitor->trace(m_siblingRuleSet); 1509 visitor->trace(m_siblingRuleSet);
1510 visitor->trace(m_uncommonAttributeRuleSet); 1510 visitor->trace(m_uncommonAttributeRuleSet);
1511 visitor->trace(m_watchedSelectorsRules); 1511 visitor->trace(m_watchedSelectorsRules);
1512 visitor->trace(m_treeBoundaryCrossingRules); 1512 visitor->trace(m_treeBoundaryCrossingRules);
1513 visitor->trace(m_pendingStyleSheets); 1513 visitor->trace(m_pendingStyleSheets);
1514 } 1514 }
1515 1515
1516 } // namespace WebCore 1516 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/resolver/StyleBuilderCustom.cpp ('k') | Source/core/css/resolver/StyleResolverState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698