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

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

Issue 2696803002: Remove unused includes of SVGDocumentExtensions.h (Closed)
Patch Set: Created 3 years, 10 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 | « no previous file | third_party/WebKit/Source/core/input/EventHandler.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) 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. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
6 * All rights reserved. 6 * All rights reserved.
7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
10 * (http://www.torchmobile.com/) 10 * (http://www.torchmobile.com/)
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 #include "core/dom/shadow/ShadowRoot.h" 83 #include "core/dom/shadow/ShadowRoot.h"
84 #include "core/frame/FrameView.h" 84 #include "core/frame/FrameView.h"
85 #include "core/frame/LocalFrame.h" 85 #include "core/frame/LocalFrame.h"
86 #include "core/frame/Settings.h" 86 #include "core/frame/Settings.h"
87 #include "core/frame/UseCounter.h" 87 #include "core/frame/UseCounter.h"
88 #include "core/html/HTMLIFrameElement.h" 88 #include "core/html/HTMLIFrameElement.h"
89 #include "core/html/HTMLSlotElement.h" 89 #include "core/html/HTMLSlotElement.h"
90 #include "core/inspector/InspectorInstrumentation.h" 90 #include "core/inspector/InspectorInstrumentation.h"
91 #include "core/layout/GeneratedChildren.h" 91 #include "core/layout/GeneratedChildren.h"
92 #include "core/style/StyleInheritedVariables.h" 92 #include "core/style/StyleInheritedVariables.h"
93 #include "core/svg/SVGDocumentExtensions.h"
94 #include "core/svg/SVGElement.h" 93 #include "core/svg/SVGElement.h"
95 #include "platform/RuntimeEnabledFeatures.h" 94 #include "platform/RuntimeEnabledFeatures.h"
96 #include "wtf/StdLibExtras.h" 95 #include "wtf/StdLibExtras.h"
97 96
98 namespace blink { 97 namespace blink {
99 98
100 namespace { 99 namespace {
101 100
102 void setAnimationUpdateIfNeeded(StyleResolverState& state, Element& element) { 101 void setAnimationUpdateIfNeeded(StyleResolverState& state, Element& element) {
103 // If any changes to CSS Animations were detected, stash the update away for 102 // If any changes to CSS Animations were detected, stash the update away for
(...skipping 1829 matching lines...) Expand 10 before | Expand all | Expand 10 after
1933 1932
1934 DEFINE_TRACE(StyleResolver) { 1933 DEFINE_TRACE(StyleResolver) {
1935 visitor->trace(m_matchedPropertiesCache); 1934 visitor->trace(m_matchedPropertiesCache);
1936 visitor->trace(m_selectorFilter); 1935 visitor->trace(m_selectorFilter);
1937 visitor->trace(m_styleSharingLists); 1936 visitor->trace(m_styleSharingLists);
1938 visitor->trace(m_document); 1937 visitor->trace(m_document);
1939 visitor->trace(m_tracker); 1938 visitor->trace(m_tracker);
1940 } 1939 }
1941 1940
1942 } // namespace blink 1941 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/input/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698