| OLD | NEW |
| 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, 2009 Apple Computer, Inc. | 3 * Copyright (C) 2004, 2005, 2006, 2009 Apple Computer, Inc. |
| 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, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 #include "core/css/CSSShadowValue.h" | 20 #include "core/css/CSSShadowValue.h" |
| 21 | 21 |
| 22 #include "core/css/CSSPrimitiveValue.h" | 22 #include "core/css/CSSPrimitiveValue.h" |
| 23 #include "wtf/text/StringBuilder.h" | 23 #include "wtf/text/StringBuilder.h" |
| 24 #include "wtf/text/WTFString.h" | 24 #include "wtf/text/WTFString.h" |
| 25 | 25 |
| 26 namespace blink { | 26 namespace blink { |
| 27 | 27 |
| 28 // Used for text-shadow and box-shadow | 28 // Used for text-shadow and box-shadow |
| 29 CSSShadowValue::CSSShadowValue(RawPtr<CSSPrimitiveValue> x, | 29 CSSShadowValue::CSSShadowValue(CSSPrimitiveValue* x, |
| 30 RawPtr<CSSPrimitiveValue> y, | 30 CSSPrimitiveValue* y, |
| 31 RawPtr<CSSPrimitiveValue> blur, | 31 CSSPrimitiveValue* blur, |
| 32 RawPtr<CSSPrimitiveValue> spread, | 32 CSSPrimitiveValue* spread, |
| 33 RawPtr<CSSPrimitiveValue> style, | 33 CSSPrimitiveValue* style, |
| 34 RawPtr<CSSValue> color) | 34 CSSValue* color) |
| 35 : CSSValue(ShadowClass) | 35 : CSSValue(ShadowClass) |
| 36 , x(x) | 36 , x(x) |
| 37 , y(y) | 37 , y(y) |
| 38 , blur(blur) | 38 , blur(blur) |
| 39 , spread(spread) | 39 , spread(spread) |
| 40 , style(style) | 40 , style(style) |
| 41 , color(color) | 41 , color(color) |
| 42 { | 42 { |
| 43 } | 43 } |
| 44 | 44 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 visitor->trace(x); | 92 visitor->trace(x); |
| 93 visitor->trace(y); | 93 visitor->trace(y); |
| 94 visitor->trace(blur); | 94 visitor->trace(blur); |
| 95 visitor->trace(spread); | 95 visitor->trace(spread); |
| 96 visitor->trace(style); | 96 visitor->trace(style); |
| 97 visitor->trace(color); | 97 visitor->trace(color); |
| 98 CSSValue::traceAfterDispatch(visitor); | 98 CSSValue::traceAfterDispatch(visitor); |
| 99 } | 99 } |
| 100 | 100 |
| 101 } // namespace blink | 101 } // namespace blink |
| OLD | NEW |