| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 #include "core/css/CSSImageGeneratorValue.h" | 29 #include "core/css/CSSImageGeneratorValue.h" |
| 30 #include "core/css/CSSPrimitiveValue.h" | 30 #include "core/css/CSSPrimitiveValue.h" |
| 31 #include "wtf/RefPtr.h" | 31 #include "wtf/RefPtr.h" |
| 32 #include "wtf/Vector.h" | 32 #include "wtf/Vector.h" |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 | 35 |
| 36 class FloatPoint; | 36 class FloatPoint; |
| 37 class Gradient; | 37 class Gradient; |
| 38 class TextLinkColors; | |
| 39 | 38 |
| 40 enum CSSGradientType { | 39 enum CSSGradientType { |
| 41 CSSDeprecatedLinearGradient, | 40 CSSDeprecatedLinearGradient, |
| 42 CSSDeprecatedRadialGradient, | 41 CSSDeprecatedRadialGradient, |
| 43 CSSPrefixedLinearGradient, | 42 CSSPrefixedLinearGradient, |
| 44 CSSPrefixedRadialGradient, | 43 CSSPrefixedRadialGradient, |
| 45 CSSLinearGradient, | 44 CSSLinearGradient, |
| 46 CSSRadialGradient | 45 CSSRadialGradient |
| 47 }; | 46 }; |
| 48 enum CSSGradientRepeat { NonRepeating, Repeating }; | 47 enum CSSGradientRepeat { NonRepeating, Repeating }; |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 | 257 |
| 259 RefPtrWillBeMember<CSSPrimitiveValue> m_endHorizontalSize; | 258 RefPtrWillBeMember<CSSPrimitiveValue> m_endHorizontalSize; |
| 260 RefPtrWillBeMember<CSSPrimitiveValue> m_endVerticalSize; | 259 RefPtrWillBeMember<CSSPrimitiveValue> m_endVerticalSize; |
| 261 }; | 260 }; |
| 262 | 261 |
| 263 DEFINE_CSS_VALUE_TYPE_CASTS(CSSRadialGradientValue, isRadialGradientValue()); | 262 DEFINE_CSS_VALUE_TYPE_CASTS(CSSRadialGradientValue, isRadialGradientValue()); |
| 264 | 263 |
| 265 } // namespace blink | 264 } // namespace blink |
| 266 | 265 |
| 267 #endif // CSSGradientValue_h | 266 #endif // CSSGradientValue_h |
| OLD | NEW |