| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Rob Buis <buis@kde.org> | 2 * Copyright (C) 2006 Rob Buis <buis@kde.org> |
| 3 * (C) 2008 Nikolas Zimmermann <zimmermann@kde.org> | 3 * (C) 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 4 * Copyright (C) 2008 Apple Inc. All rights reserved. | 4 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
| 17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #include "config.h" | 22 #include "config.h" |
| 23 #include "core/css/CSSCursorImageValue.h" | 23 #include "core/css/CSSCursorImageValue.h" |
| 24 | 24 |
| 25 #include "core/SVGNames.h" | 25 #include "core/SVGNames.h" |
| 26 #include "core/css/CSSImageSetValue.h" | 26 #include "core/css/CSSImageSetValue.h" |
| 27 #include "core/fetch/ImageResource.h" | 27 #include "core/fetch/ImageResource.h" |
| 28 #include "core/layout/style/StyleFetchedImage.h" | 28 #include "core/style/StyleFetchedImage.h" |
| 29 #include "core/layout/style/StyleFetchedImageSet.h" | 29 #include "core/style/StyleFetchedImageSet.h" |
| 30 #include "core/layout/style/StyleImage.h" | 30 #include "core/style/StyleImage.h" |
| 31 #include "core/layout/style/StylePendingImage.h" | 31 #include "core/style/StylePendingImage.h" |
| 32 #include "core/svg/SVGCursorElement.h" | 32 #include "core/svg/SVGCursorElement.h" |
| 33 #include "core/svg/SVGLengthContext.h" | 33 #include "core/svg/SVGLengthContext.h" |
| 34 #include "core/svg/SVGURIReference.h" | 34 #include "core/svg/SVGURIReference.h" |
| 35 #include "wtf/MathExtras.h" | 35 #include "wtf/MathExtras.h" |
| 36 #include "wtf/text/StringBuilder.h" | 36 #include "wtf/text/StringBuilder.h" |
| 37 #include "wtf/text/WTFString.h" | 37 #include "wtf/text/WTFString.h" |
| 38 | 38 |
| 39 namespace blink { | 39 namespace blink { |
| 40 | 40 |
| 41 static inline SVGCursorElement* resourceReferencedByCursorElement(const String&
url, TreeScope& treeScope) | 41 static inline SVGCursorElement* resourceReferencedByCursorElement(const String&
url, TreeScope& treeScope) |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 && compareCSSValuePtr(m_imageValue, other.m_imageValue); | 200 && compareCSSValuePtr(m_imageValue, other.m_imageValue); |
| 201 } | 201 } |
| 202 | 202 |
| 203 DEFINE_TRACE_AFTER_DISPATCH(CSSCursorImageValue) | 203 DEFINE_TRACE_AFTER_DISPATCH(CSSCursorImageValue) |
| 204 { | 204 { |
| 205 visitor->trace(m_imageValue); | 205 visitor->trace(m_imageValue); |
| 206 CSSValue::traceAfterDispatch(visitor); | 206 CSSValue::traceAfterDispatch(visitor); |
| 207 } | 207 } |
| 208 | 208 |
| 209 } // namespace blink | 209 } // namespace blink |
| OLD | NEW |