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

Side by Side Diff: Source/core/css/CSSValue.h

Issue 25434004: Generate toCSSFooValue() for CSSCanvasValue, CSSCrossfadeValue, CSSImageGeneratorValue, CSSImageVal… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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/CSSUnicodeRangeValue.h ('k') | Source/core/css/CSSValue.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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 void setCssText(const String&, ExceptionState&) { } // FIXME: Not implemente d. 64 void setCssText(const String&, ExceptionState&) { } // FIXME: Not implemente d.
65 String serializeResolvingVariables(const HashMap<AtomicString, String>&) con st; 65 String serializeResolvingVariables(const HashMap<AtomicString, String>&) con st;
66 66
67 bool isPrimitiveValue() const { return m_classType == PrimitiveClass; } 67 bool isPrimitiveValue() const { return m_classType == PrimitiveClass; }
68 bool isValueList() const { return m_classType >= ValueListClass; } 68 bool isValueList() const { return m_classType >= ValueListClass; }
69 69
70 bool isBaseValueList() const { return m_classType == ValueListClass; } 70 bool isBaseValueList() const { return m_classType == ValueListClass; }
71 71
72 bool isAspectRatioValue() const { return m_classType == AspectRatioClass; } 72 bool isAspectRatioValue() const { return m_classType == AspectRatioClass; }
73 bool isBorderImageSliceValue() const { return m_classType == BorderImageSlic eClass; } 73 bool isBorderImageSliceValue() const { return m_classType == BorderImageSlic eClass; }
74 bool isCanvasValue() const { return m_classType == CanvasClass; }
74 bool isCursorImageValue() const { return m_classType == CursorImageClass; } 75 bool isCursorImageValue() const { return m_classType == CursorImageClass; }
76 bool isCrossfadeValue() const { return m_classType == CrossfadeClass; }
75 bool isFontFeatureValue() const { return m_classType == FontFeatureClass; } 77 bool isFontFeatureValue() const { return m_classType == FontFeatureClass; }
76 bool isFontValue() const { return m_classType == FontClass; } 78 bool isFontValue() const { return m_classType == FontClass; }
77 bool isFontFaceSrcValue() const { return m_classType == FontFaceSrcClass; } 79 bool isFontFaceSrcValue() const { return m_classType == FontFaceSrcClass; }
78 bool isFunctionValue() const { return m_classType == FunctionClass; } 80 bool isFunctionValue() const { return m_classType == FunctionClass; }
79 bool isImageGeneratorValue() const { return m_classType >= CanvasClass && m_ classType <= RadialGradientClass; } 81 bool isImageGeneratorValue() const { return m_classType >= CanvasClass && m_ classType <= RadialGradientClass; }
80 bool isGradientValue() const { return m_classType >= LinearGradientClass && m_classType <= RadialGradientClass; } 82 bool isGradientValue() const { return m_classType >= LinearGradientClass && m_classType <= RadialGradientClass; }
81 bool isImageSetValue() const { return m_classType == ImageSetClass; } 83 bool isImageSetValue() const { return m_classType == ImageSetClass; }
82 bool isImageValue() const { return m_classType == ImageClass; } 84 bool isImageValue() const { return m_classType == ImageClass; }
83 bool isImplicitInitialValue() const; 85 bool isImplicitInitialValue() const;
84 bool isInheritedValue() const { return m_classType == InheritedClass; } 86 bool isInheritedValue() const { return m_classType == InheritedClass; }
85 bool isInitialValue() const { return m_classType == InitialClass; } 87 bool isInitialValue() const { return m_classType == InitialClass; }
86 bool isLinearGradientValue() const { return m_classType == LinearGradientCla ss; } 88 bool isLinearGradientValue() const { return m_classType == LinearGradientCla ss; }
87 bool isRadialGradientValue() const { return m_classType == RadialGradientCla ss; } 89 bool isRadialGradientValue() const { return m_classType == RadialGradientCla ss; }
88 bool isReflectValue() const { return m_classType == ReflectClass; } 90 bool isReflectValue() const { return m_classType == ReflectClass; }
89 bool isShadowValue() const { return m_classType == ShadowClass; } 91 bool isShadowValue() const { return m_classType == ShadowClass; }
90 bool isCubicBezierTimingFunctionValue() const { return m_classType == CubicB ezierTimingFunctionClass; } 92 bool isCubicBezierTimingFunctionValue() const { return m_classType == CubicB ezierTimingFunctionClass; }
91 bool isStepsTimingFunctionValue() const { return m_classType == StepsTimingF unctionClass; } 93 bool isStepsTimingFunctionValue() const { return m_classType == StepsTimingF unctionClass; }
92 bool isTransformValue() const { return m_classType == CSSTransformClass; } 94 bool isTransformValue() const { return m_classType == CSSTransformClass; }
93 bool isLineBoxContainValue() const { return m_classType == LineBoxContainCla ss; } 95 bool isLineBoxContainValue() const { return m_classType == LineBoxContainCla ss; }
94 bool isCalcValue() const {return m_classType == CalculationClass; } 96 bool isCalcValue() const {return m_classType == CalculationClass; }
95 bool isFilterValue() const { return m_classType == CSSFilterClass; } 97 bool isFilterValue() const { return m_classType == CSSFilterClass; }
96 bool isArrayFunctionValue() const { return m_classType == CSSArrayFunctionVa lueClass; } 98 bool isArrayFunctionValue() const { return m_classType == CSSArrayFunctionVa lueClass; }
97 bool isMixFunctionValue() const { return m_classType == CSSMixFunctionValueC lass; } 99 bool isMixFunctionValue() const { return m_classType == CSSMixFunctionValueC lass; }
98 bool isShaderValue() const { return m_classType == CSSShaderClass; } 100 bool isShaderValue() const { return m_classType == CSSShaderClass; }
99 bool isVariableValue() const { return m_classType == VariableClass; } 101 bool isVariableValue() const { return m_classType == VariableClass; }
100 bool isGridTemplateValue() const { return m_classType == GridTemplateClass; } 102 bool isGridTemplateValue() const { return m_classType == GridTemplateClass; }
101 bool isSVGColor() const { return m_classType == SVGColorClass || m_classType == SVGPaintClass; } 103 bool isSVGColor() const { return m_classType == SVGColorClass || m_classType == SVGPaintClass; }
102 bool isSVGPaint() const { return m_classType == SVGPaintClass; } 104 bool isSVGPaint() const { return m_classType == SVGPaintClass; }
103 bool isSVGDocumentValue() const { return m_classType == CSSSVGDocumentClass; } 105 bool isSVGDocumentValue() const { return m_classType == CSSSVGDocumentClass; }
106 bool isUnicodeRangeValue() const { return m_classType == UnicodeRangeClass; }
104 107
105 bool isCSSOMSafe() const { return m_isCSSOMSafe; } 108 bool isCSSOMSafe() const { return m_isCSSOMSafe; }
106 bool isSubtypeExposedToCSSOM() const 109 bool isSubtypeExposedToCSSOM() const
107 { 110 {
108 return isPrimitiveValue() || isSVGColor() || isValueList(); 111 return isPrimitiveValue() || isSVGColor() || isValueList();
109 } 112 }
110 113
111 PassRefPtr<CSSValue> cloneForCSSOM() const; 114 PassRefPtr<CSSValue> cloneForCSSOM() const;
112 115
113 void addSubresourceStyleURLs(ListHashSet<KURL>&, const StyleSheetContents*) const; 116 void addSubresourceStyleURLs(ListHashSet<KURL>&, const StyleSheetContents*) const;
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 { \ 252 { \
250 ASSERT_WITH_SECURITY_IMPLICATION(!value || value->is##ValueTypeName()); \ 253 ASSERT_WITH_SECURITY_IMPLICATION(!value || value->is##ValueTypeName()); \
251 return static_cast<CSS##ValueTypeName*>(value); \ 254 return static_cast<CSS##ValueTypeName*>(value); \
252 } \ 255 } \
253 void toCSS##ValueTypeName(const CSS##ValueTypeName*); \ 256 void toCSS##ValueTypeName(const CSS##ValueTypeName*); \
254 void toCSS##ValueTypeName(const CSS##ValueTypeName&) 257 void toCSS##ValueTypeName(const CSS##ValueTypeName&)
255 258
256 } // namespace WebCore 259 } // namespace WebCore
257 260
258 #endif // CSSValue_h 261 #endif // CSSValue_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSUnicodeRangeValue.h ('k') | Source/core/css/CSSValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698