| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2002-2003 Dirk Mueller (mueller@kde.org) | 3 * (C) 2002-2003 Dirk Mueller (mueller@kde.org) |
| 4 * Copyright (C) 2002, 2005, 2006, 2007, 2012 Apple Inc. All rights reserved. | 4 * Copyright (C) 2002, 2005, 2006, 2007, 2012 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 "core/css/CSSRule.h" | 22 #include "core/css/CSSRule.h" |
| 23 | 23 |
| 24 #include "core/css/CSSStyleSheet.h" | 24 #include "core/css/CSSStyleSheet.h" |
| 25 #include "core/css/StyleRule.h" | 25 #include "core/css/StyleRule.h" |
| 26 #include "core/css/StyleSheetContents.h" | 26 #include "core/css/StyleSheetContents.h" |
| 27 | 27 |
| 28 namespace blink { | 28 namespace blink { |
| 29 | 29 |
| 30 struct SameSizeAsCSSRule : public RefCountedWillBeGarbageCollectedFinalized<Same
SizeAsCSSRule>, public ScriptWrappable { | 30 struct SameSizeAsCSSRule : public GarbageCollectedFinalized<SameSizeAsCSSRule>,
public ScriptWrappable { |
| 31 virtual ~SameSizeAsCSSRule(); | 31 virtual ~SameSizeAsCSSRule(); |
| 32 unsigned char bitfields; | 32 unsigned char bitfields; |
| 33 void* pointerUnion; | 33 void* pointerUnion; |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 static_assert(sizeof(CSSRule) == sizeof(SameSizeAsCSSRule), "CSSRule should stay
small"); | 36 static_assert(sizeof(CSSRule) == sizeof(SameSizeAsCSSRule), "CSSRule should stay
small"); |
| 37 | 37 |
| 38 const CSSParserContext& CSSRule::parserContext() const | 38 const CSSParserContext& CSSRule::parserContext() const |
| 39 { | 39 { |
| 40 CSSStyleSheet* styleSheet = parentStyleSheet(); | 40 CSSStyleSheet* styleSheet = parentStyleSheet(); |
| 41 return styleSheet ? styleSheet->contents()->parserContext() : strictCSSParse
rContext(); | 41 return styleSheet ? styleSheet->contents()->parserContext() : strictCSSParse
rContext(); |
| 42 } | 42 } |
| 43 | 43 |
| 44 DEFINE_TRACE(CSSRule) | 44 DEFINE_TRACE(CSSRule) |
| 45 { | 45 { |
| 46 #if ENABLE(OILPAN) | 46 #if ENABLE(OILPAN) |
| 47 // This makes the parent link strong, which is different from the | 47 // This makes the parent link strong, which is different from the |
| 48 // pre-oilpan world, where the parent link is mysteriously zeroed under | 48 // pre-oilpan world, where the parent link is mysteriously zeroed under |
| 49 // some circumstances. | 49 // some circumstances. |
| 50 if (m_parentIsRule) | 50 if (m_parentIsRule) |
| 51 visitor->trace(m_parentRule); | 51 visitor->trace(m_parentRule); |
| 52 else | 52 else |
| 53 visitor->trace(m_parentStyleSheet); | 53 visitor->trace(m_parentStyleSheet); |
| 54 #endif | 54 #endif |
| 55 } | 55 } |
| 56 | 56 |
| 57 } // namespace blink | 57 } // namespace blink |
| OLD | NEW |