| 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, 2006, 2007, 2012 Apple Inc. All rights reserved. | 4 * Copyright (C) 2002, 2006, 2007, 2012 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2011 Andreas Kling (kling@webkit.org) | 5 * Copyright (C) 2011 Andreas Kling (kling@webkit.org) |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "wtf/RefCounted.h" | 28 #include "wtf/RefCounted.h" |
| 29 #include "wtf/text/WTFString.h" | 29 #include "wtf/text/WTFString.h" |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 | 32 |
| 33 class CSSParserContext; | 33 class CSSParserContext; |
| 34 class CSSRuleList; | 34 class CSSRuleList; |
| 35 class CSSStyleSheet; | 35 class CSSStyleSheet; |
| 36 class StyleRuleBase; | 36 class StyleRuleBase; |
| 37 | 37 |
| 38 class CSSRule : public RefCountedWillBeGarbageCollectedFinalized<CSSRule>, publi
c ScriptWrappable { | 38 class CORE_EXPORT CSSRule : public RefCountedWillBeGarbageCollectedFinalized<CSS
Rule>, public ScriptWrappable { |
| 39 DEFINE_WRAPPERTYPEINFO(); | 39 DEFINE_WRAPPERTYPEINFO(); |
| 40 public: | 40 public: |
| 41 virtual ~CSSRule() { } | 41 virtual ~CSSRule() { } |
| 42 | 42 |
| 43 enum Type { | 43 enum Type { |
| 44 STYLE_RULE = 1, | 44 STYLE_RULE = 1, |
| 45 CHARSET_RULE = 2, | 45 CHARSET_RULE = 2, |
| 46 IMPORT_RULE = 3, | 46 IMPORT_RULE = 3, |
| 47 MEDIA_RULE = 4, | 47 MEDIA_RULE = 4, |
| 48 FONT_FACE_RULE = 5, | 48 FONT_FACE_RULE = 5, |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 CSSStyleSheet* m_parentStyleSheet; | 111 CSSStyleSheet* m_parentStyleSheet; |
| 112 }; | 112 }; |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 #define DEFINE_CSS_RULE_TYPE_CASTS(ToType, TYPE_NAME) \ | 115 #define DEFINE_CSS_RULE_TYPE_CASTS(ToType, TYPE_NAME) \ |
| 116 DEFINE_TYPE_CASTS(ToType, CSSRule, rule, rule->type() == CSSRule::TYPE_NAME,
rule.type() == CSSRule::TYPE_NAME) | 116 DEFINE_TYPE_CASTS(ToType, CSSRule, rule, rule->type() == CSSRule::TYPE_NAME,
rule.type() == CSSRule::TYPE_NAME) |
| 117 | 117 |
| 118 } // namespace blink | 118 } // namespace blink |
| 119 | 119 |
| 120 #endif // CSSRule_h | 120 #endif // CSSRule_h |
| OLD | NEW |