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

Side by Side Diff: Source/core/css/resolver/ScopedStyleResolver.h

Issue 15797004: Cleanup WebKit prefixed names for classes in css directory. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 * Copyright (C) 2012 Google Inc. All rights reserved. 4 * Copyright (C) 2012 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 10 matching lines...) Expand all
21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N 21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N
22 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #ifndef ScopedStyleResolver_h 27 #ifndef ScopedStyleResolver_h
28 #define ScopedStyleResolver_h 28 #define ScopedStyleResolver_h
29 29
30 #include "core/css/CSSRuleList.h" 30 #include "core/css/CSSRuleList.h"
31 #include "core/css/CSSSVGDocumentValue.h"
31 #include "core/css/CSSToStyleMap.h" 32 #include "core/css/CSSToStyleMap.h"
32 #include "core/css/CSSValueList.h" 33 #include "core/css/CSSValueList.h"
33 #include "core/css/DocumentRuleSets.h" 34 #include "core/css/DocumentRuleSets.h"
34 #include "core/css/InspectorCSSOMWrappers.h" 35 #include "core/css/InspectorCSSOMWrappers.h"
35 #include "core/css/MediaQueryExp.h" 36 #include "core/css/MediaQueryExp.h"
36 #include "core/css/RuleFeature.h" 37 #include "core/css/RuleFeature.h"
37 #include "core/css/RuleSet.h" 38 #include "core/css/RuleSet.h"
38 #include "core/css/SelectorChecker.h" 39 #include "core/css/SelectorChecker.h"
39 #include "core/css/SelectorFilter.h" 40 #include "core/css/SelectorFilter.h"
40 #include "core/css/SiblingTraversalStrategies.h" 41 #include "core/css/SiblingTraversalStrategies.h"
41 #include "core/css/WebKitCSSSVGDocumentValue.h"
42 #include "core/css/WebKitCSSKeyframeRule.h" 42 #include "core/css/WebKitCSSKeyframeRule.h"
43 #include "core/css/WebKitCSSKeyframesRule.h" 43 #include "core/css/WebKitCSSKeyframesRule.h"
44 #include "core/css/resolver/ViewportStyleResolver.h" 44 #include "core/css/resolver/ViewportStyleResolver.h"
45 #include "core/platform/LinkHash.h" 45 #include "core/platform/LinkHash.h"
46 #include "core/platform/ScrollTypes.h" 46 #include "core/platform/ScrollTypes.h"
47 #include "core/platform/graphics/filters/custom/CustomFilterConstants.h" 47 #include "core/platform/graphics/filters/custom/CustomFilterConstants.h"
48 #include "core/rendering/style/RenderStyle.h" 48 #include "core/rendering/style/RenderStyle.h"
49 #include "core/rendering/style/StyleInheritedData.h" 49 #include "core/rendering/style/StyleInheritedData.h"
50 #include "wtf/Assertions.h" 50 #include "wtf/Assertions.h"
51 #include "wtf/Forward.h" 51 #include "wtf/Forward.h"
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 { 160 {
161 if (!cacheIsValid(element)) 161 if (!cacheIsValid(element))
162 resolveStyleCache(element); 162 resolveStyleCache(element);
163 163
164 return m_cache.scopeResolver; 164 return m_cache.scopeResolver;
165 } 165 }
166 166
167 } // namespace WebCore 167 } // namespace WebCore
168 168
169 #endif // ScopedStyleResolver_h 169 #endif // ScopedStyleResolver_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698