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

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

Issue 25497002: Generate toCSSFooValue() for CSS child values (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/CSSTransformValue.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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 bool isImageValue() const { return m_classType == ImageClass; } 82 bool isImageValue() const { return m_classType == ImageClass; }
83 bool isImplicitInitialValue() const; 83 bool isImplicitInitialValue() const;
84 bool isInheritedValue() const { return m_classType == InheritedClass; } 84 bool isInheritedValue() const { return m_classType == InheritedClass; }
85 bool isInitialValue() const { return m_classType == InitialClass; } 85 bool isInitialValue() const { return m_classType == InitialClass; }
86 bool isLinearGradientValue() const { return m_classType == LinearGradientCla ss; } 86 bool isLinearGradientValue() const { return m_classType == LinearGradientCla ss; }
87 bool isRadialGradientValue() const { return m_classType == RadialGradientCla ss; } 87 bool isRadialGradientValue() const { return m_classType == RadialGradientCla ss; }
88 bool isReflectValue() const { return m_classType == ReflectClass; } 88 bool isReflectValue() const { return m_classType == ReflectClass; }
89 bool isShadowValue() const { return m_classType == ShadowClass; } 89 bool isShadowValue() const { return m_classType == ShadowClass; }
90 bool isCubicBezierTimingFunctionValue() const { return m_classType == CubicB ezierTimingFunctionClass; } 90 bool isCubicBezierTimingFunctionValue() const { return m_classType == CubicB ezierTimingFunctionClass; }
91 bool isStepsTimingFunctionValue() const { return m_classType == StepsTimingF unctionClass; } 91 bool isStepsTimingFunctionValue() const { return m_classType == StepsTimingF unctionClass; }
92 bool isCSSTransformValue() const { return m_classType == CSSTransformClass; } 92 bool isTransformValue() const { return m_classType == CSSTransformClass; }
93 bool isCSSLineBoxContainValue() const { return m_classType == LineBoxContain Class; } 93 bool isLineBoxContainValue() const { return m_classType == LineBoxContainCla ss; }
94 bool isCalcValue() const {return m_classType == CalculationClass; } 94 bool isCalcValue() const {return m_classType == CalculationClass; }
95 bool isCSSFilterValue() const { return m_classType == CSSFilterClass; } 95 bool isFilterValue() const { return m_classType == CSSFilterClass; }
96 bool isCSSArrayFunctionValue() const { return m_classType == CSSArrayFunctio nValueClass; } 96 bool isArrayFunctionValue() const { return m_classType == CSSArrayFunctionVa lueClass; }
97 bool isCSSMixFunctionValue() const { return m_classType == CSSMixFunctionVal ueClass; } 97 bool isMixFunctionValue() const { return m_classType == CSSMixFunctionValueC lass; }
98 bool isShaderValue() const { return m_classType == CSSShaderClass; } 98 bool isShaderValue() const { return m_classType == CSSShaderClass; }
99 bool isVariableValue() const { return m_classType == VariableClass; } 99 bool isVariableValue() const { return m_classType == VariableClass; }
100 bool isGridTemplateValue() const { return m_classType == GridTemplateClass; } 100 bool isGridTemplateValue() const { return m_classType == GridTemplateClass; }
101 bool isSVGColor() const { return m_classType == SVGColorClass || m_classType == SVGPaintClass; } 101 bool isSVGColor() const { return m_classType == SVGColorClass || m_classType == SVGPaintClass; }
102 bool isSVGPaint() const { return m_classType == SVGPaintClass; } 102 bool isSVGPaint() const { return m_classType == SVGPaintClass; }
103 bool isSVGDocumentValue() const { return m_classType == CSSSVGDocumentClass; } 103 bool isSVGDocumentValue() const { return m_classType == CSSSVGDocumentClass; }
104 104
105 bool isCSSOMSafe() const { return m_isCSSOMSafe; } 105 bool isCSSOMSafe() const { return m_isCSSOMSafe; }
106 bool isSubtypeExposedToCSSOM() const 106 bool isSubtypeExposedToCSSOM() const
107 { 107 {
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 { \ 249 { \
250 ASSERT_WITH_SECURITY_IMPLICATION(!value || value->is##ValueTypeName()); \ 250 ASSERT_WITH_SECURITY_IMPLICATION(!value || value->is##ValueTypeName()); \
251 return static_cast<CSS##ValueTypeName*>(value); \ 251 return static_cast<CSS##ValueTypeName*>(value); \
252 } \ 252 } \
253 void toCSS##ValueTypeName(const CSS##ValueTypeName*); \ 253 void toCSS##ValueTypeName(const CSS##ValueTypeName*); \
254 void toCSS##ValueTypeName(const CSS##ValueTypeName&) 254 void toCSS##ValueTypeName(const CSS##ValueTypeName&)
255 255
256 } // namespace WebCore 256 } // namespace WebCore
257 257
258 #endif // CSSValue_h 258 #endif // CSSValue_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSTransformValue.h ('k') | Source/core/css/CSSValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698