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

Side by Side Diff: Source/core/css/CSSComputedStyleDeclaration.cpp

Issue 15387004: Remove some unused includes from core/css and core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 7 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/css/CSSCanvasValue.cpp ('k') | Source/core/css/CSSCrossfadeValue.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) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 10 matching lines...) Expand all
21 * 02110-1301 USA 21 * 02110-1301 USA
22 */ 22 */
23 23
24 #include "config.h" 24 #include "config.h"
25 #include "core/css/CSSComputedStyleDeclaration.h" 25 #include "core/css/CSSComputedStyleDeclaration.h"
26 26
27 #include "CSSPropertyNames.h" 27 #include "CSSPropertyNames.h"
28 #include "WebKitFontFamilyNames.h" 28 #include "WebKitFontFamilyNames.h"
29 #include "core/css/BasicShapeFunctions.h" 29 #include "core/css/BasicShapeFunctions.h"
30 #include "core/css/CSSAspectRatioValue.h" 30 #include "core/css/CSSAspectRatioValue.h"
31 #include "core/css/CSSBasicShapes.h"
32 #include "core/css/CSSBorderImage.h" 31 #include "core/css/CSSBorderImage.h"
33 #include "core/css/CSSFunctionValue.h" 32 #include "core/css/CSSFunctionValue.h"
34 #include "core/css/CSSLineBoxContainValue.h" 33 #include "core/css/CSSLineBoxContainValue.h"
35 #include "core/css/CSSParser.h" 34 #include "core/css/CSSParser.h"
36 #include "core/css/CSSPrimitiveValue.h" 35 #include "core/css/CSSPrimitiveValue.h"
37 #include "core/css/CSSPrimitiveValueMappings.h" 36 #include "core/css/CSSPrimitiveValueMappings.h"
38 #include "core/css/CSSReflectValue.h" 37 #include "core/css/CSSReflectValue.h"
39 #include "core/css/CSSSelector.h" 38 #include "core/css/CSSSelector.h"
40 #include "core/css/CSSTimingFunctionValue.h" 39 #include "core/css/CSSTimingFunctionValue.h"
41 #include "core/css/CSSValueList.h" 40 #include "core/css/CSSValueList.h"
42 #include "core/css/CSSValuePool.h" 41 #include "core/css/CSSValuePool.h"
43 #include "core/css/FontFeatureValue.h" 42 #include "core/css/FontFeatureValue.h"
44 #include "core/css/FontValue.h" 43 #include "core/css/FontValue.h"
45 #include "core/css/Pair.h" 44 #include "core/css/Pair.h"
46 #include "core/css/Rect.h" 45 #include "core/css/Rect.h"
47 #include "core/css/ShadowValue.h" 46 #include "core/css/ShadowValue.h"
48 #include "core/css/StylePropertySet.h" 47 #include "core/css/StylePropertySet.h"
49 #include "core/css/StylePropertyShorthand.h" 48 #include "core/css/StylePropertyShorthand.h"
50 #include "core/css/WebKitCSSTransformValue.h" 49 #include "core/css/WebKitCSSTransformValue.h"
51 #include "core/css/resolver/StyleResolver.h" 50 #include "core/css/resolver/StyleResolver.h"
52 #include "core/dom/Document.h" 51 #include "core/dom/Document.h"
53 #include "core/dom/ExceptionCode.h" 52 #include "core/dom/ExceptionCode.h"
54 #include "core/dom/PseudoElement.h" 53 #include "core/dom/PseudoElement.h"
55 #include "core/dom/WebCoreMemoryInstrumentation.h" 54 #include "core/dom/WebCoreMemoryInstrumentation.h"
56 #include "core/html/HTMLFrameOwnerElement.h"
57 #include "core/page/RuntimeCSSEnabled.h" 55 #include "core/page/RuntimeCSSEnabled.h"
58 #include "core/page/animation/AnimationController.h" 56 #include "core/page/animation/AnimationController.h"
59 #include "core/platform/graphics/FontFeatureSettings.h" 57 #include "core/platform/graphics/FontFeatureSettings.h"
60 #include "core/rendering/RenderBox.h" 58 #include "core/rendering/RenderBox.h"
61 #include "core/rendering/RenderView.h" 59 #include "core/rendering/RenderView.h"
62 #include "core/rendering/style/BasicShapes.h"
63 #include "core/rendering/style/ContentData.h" 60 #include "core/rendering/style/ContentData.h"
64 #include "core/rendering/style/CounterContent.h" 61 #include "core/rendering/style/CounterContent.h"
65 #include "core/rendering/style/CursorList.h" 62 #include "core/rendering/style/CursorList.h"
66 #include "core/rendering/style/ExclusionShapeValue.h" 63 #include "core/rendering/style/ExclusionShapeValue.h"
67 #include "core/rendering/style/RenderStyle.h" 64 #include "core/rendering/style/RenderStyle.h"
68 #include "core/rendering/style/StyleInheritedData.h"
69 #include <wtf/text/StringBuilder.h> 65 #include <wtf/text/StringBuilder.h>
70 66
71 #include "core/css/WebKitCSSArrayFunctionValue.h" 67 #include "core/css/WebKitCSSArrayFunctionValue.h"
72 #include "core/css/WebKitCSSMixFunctionValue.h" 68 #include "core/css/WebKitCSSMixFunctionValue.h"
73 #include "core/platform/graphics/filters/custom/CustomFilterArrayParameter.h" 69 #include "core/platform/graphics/filters/custom/CustomFilterArrayParameter.h"
74 #include "core/platform/graphics/filters/custom/CustomFilterNumberParameter.h" 70 #include "core/platform/graphics/filters/custom/CustomFilterNumberParameter.h"
75 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" 71 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h"
76 #include "core/platform/graphics/filters/custom/CustomFilterParameter.h" 72 #include "core/platform/graphics/filters/custom/CustomFilterParameter.h"
77 #include "core/platform/graphics/filters/custom/CustomFilterTransformParameter.h " 73 #include "core/platform/graphics/filters/custom/CustomFilterTransformParameter.h "
78 74
(...skipping 2917 matching lines...) Expand 10 before | Expand all | Expand 10 after
2996 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin, 2992 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin,
2997 CSSPropertyB ackgroundClip }; 2993 CSSPropertyB ackgroundClip };
2998 2994
2999 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); 2995 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated();
3000 list->append(getCSSPropertyValuesForShorthandProperties(StylePropertyShortha nd(propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlashSeperat or)))); 2996 list->append(getCSSPropertyValuesForShorthandProperties(StylePropertyShortha nd(propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlashSeperat or))));
3001 list->append(getCSSPropertyValuesForShorthandProperties(StylePropertyShortha nd(propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSeperator )))); 2997 list->append(getCSSPropertyValuesForShorthandProperties(StylePropertyShortha nd(propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSeperator ))));
3002 return list.release(); 2998 return list.release();
3003 } 2999 }
3004 3000
3005 } // namespace WebCore 3001 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSCanvasValue.cpp ('k') | Source/core/css/CSSCrossfadeValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698