| 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, |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "wtf/text/AtomicStringHash.h" | 30 #include "wtf/text/AtomicStringHash.h" |
| 31 #include "wtf/text/WTFString.h" | 31 #include "wtf/text/WTFString.h" |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 class CSSPrimitiveValue; | 35 class CSSPrimitiveValue; |
| 36 class CSSValueList; | 36 class CSSValueList; |
| 37 class ExceptionState; | 37 class ExceptionState; |
| 38 class MutableStylePropertySet; | 38 class MutableStylePropertySet; |
| 39 class Node; | 39 class Node; |
| 40 class RenderObject; | 40 class LayoutObject; |
| 41 class RenderStyle; | 41 class RenderStyle; |
| 42 class ShadowData; | 42 class ShadowData; |
| 43 class ShadowList; | 43 class ShadowList; |
| 44 class StyleColor; | 44 class StyleColor; |
| 45 class StylePropertyShorthand; | 45 class StylePropertyShorthand; |
| 46 | 46 |
| 47 enum EUpdateLayout { DoNotUpdateLayout = false, UpdateLayout = true }; | 47 enum EUpdateLayout { DoNotUpdateLayout = false, UpdateLayout = true }; |
| 48 | 48 |
| 49 class CSSComputedStyleDeclaration final : public CSSStyleDeclaration { | 49 class CSSComputedStyleDeclaration final : public CSSStyleDeclaration { |
| 50 public: | 50 public: |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 PseudoId m_pseudoElementSpecifier; | 106 PseudoId m_pseudoElementSpecifier; |
| 107 bool m_allowVisitedStyle; | 107 bool m_allowVisitedStyle; |
| 108 #if !ENABLE(OILPAN) | 108 #if !ENABLE(OILPAN) |
| 109 unsigned m_refCount; | 109 unsigned m_refCount; |
| 110 #endif | 110 #endif |
| 111 }; | 111 }; |
| 112 | 112 |
| 113 } // namespace blink | 113 } // namespace blink |
| 114 | 114 |
| 115 #endif // CSSComputedStyleDeclaration_h | 115 #endif // CSSComputedStyleDeclaration_h |
| OLD | NEW |