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 Apple Computer, Inc. | 3 * Copyright (C) 2004, 2005, 2006 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, |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 break; | 143 break; |
144 } | 144 } |
145 ASSERT(propertyId != CSSPropertyInvalid); | 145 ASSERT(propertyId != CSSPropertyInvalid); |
146 return propertyId; | 146 return propertyId; |
147 } | 147 } |
148 | 148 |
149 } // namespace WebCore | 149 } // namespace WebCore |
150 | 150 |
151 namespace WTF { | 151 namespace WTF { |
152 template <> struct VectorTraits<WebCore::CSSProperty> : VectorTraitsBase<false,
WebCore::CSSProperty> { | 152 template <> struct VectorTraits<WebCore::CSSProperty> : VectorTraitsBase<false,
WebCore::CSSProperty> { |
153 static const bool needsVisiting = true; | 153 static const bool needsMarking = true; |
154 static const bool canInitializeWithMemset = true; | 154 static const bool canInitializeWithMemset = true; |
155 }; | 155 }; |
156 | 156 |
157 } | 157 } |
158 | 158 |
159 #endif // CSSProperty_h | 159 #endif // CSSProperty_h |
OLD | NEW |