| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> | 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 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 Lesser General Public | 6 * modify it under the terms of the GNU Lesser 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 * Lesser General Public License for more details. | 13 * Lesser General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Lesser General Public | 15 * You should have received a copy of the GNU Lesser General Public |
| 16 * License along with this library; if not, write to the Free Software | 16 * License along with this library; if not, write to the Free Software |
| 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 18 * 02110-1301 USA | 18 * 02110-1301 USA |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef CSSComputedStyleDeclaration_h | 21 #ifndef CSSComputedStyleDeclaration_h |
| 22 #define CSSComputedStyleDeclaration_h | 22 #define CSSComputedStyleDeclaration_h |
| 23 | 23 |
| 24 #include "core/css/CSSStyleDeclaration.h" | 24 #include "core/css/CSSStyleDeclaration.h" |
| 25 #include "core/rendering/style/RenderStyleConstants.h" | 25 #include "core/rendering/style/RenderStyleConstants.h" |
| 26 #include <wtf/RefPtr.h> | 26 #include "wtf/RefPtr.h" |
| 27 #include <wtf/text/WTFString.h> | 27 #include "wtf/text/WTFString.h" |
| 28 | 28 |
| 29 namespace WebCore { | 29 namespace WebCore { |
| 30 | 30 |
| 31 class CSSPrimitiveValue; | 31 class CSSPrimitiveValue; |
| 32 class CSSValueList; | 32 class CSSValueList; |
| 33 class Color; | 33 class Color; |
| 34 class MutableStylePropertySet; | 34 class MutableStylePropertySet; |
| 35 class Node; | 35 class Node; |
| 36 class RenderObject; | 36 class RenderObject; |
| 37 class RenderStyle; | 37 class RenderStyle; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 114 |
| 115 RefPtr<Node> m_node; | 115 RefPtr<Node> m_node; |
| 116 PseudoId m_pseudoElementSpecifier; | 116 PseudoId m_pseudoElementSpecifier; |
| 117 bool m_allowVisitedStyle; | 117 bool m_allowVisitedStyle; |
| 118 unsigned m_refCount; | 118 unsigned m_refCount; |
| 119 }; | 119 }; |
| 120 | 120 |
| 121 } // namespace WebCore | 121 } // namespace WebCore |
| 122 | 122 |
| 123 #endif // CSSComputedStyleDeclaration_h | 123 #endif // CSSComputedStyleDeclaration_h |
| OLD | NEW |