| OLD | NEW |
| 1 /* Copyright (C) 2012 Motorola Mobility Inc. All rights reserved. | 1 /* Copyright (C) 2012 Motorola Mobility Inc. All rights reserved. |
| 2 * | 2 * |
| 3 * Redistribution and use in source and binary forms, with or without | 3 * Redistribution and use in source and binary forms, with or without |
| 4 * modification, are permitted provided that the following conditions are | 4 * modification, are permitted provided that the following conditions are |
| 5 * met: | 5 * met: |
| 6 * | 6 * |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above | 9 * 2. Redistributions in binary form must reproduce the above |
| 10 * copyright notice, this list of conditions and the following disclaimer in | 10 * copyright notice, this list of conditions and the following disclaimer in |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 #include "core/css/CSSGroupingRule.h" | 32 #include "core/css/CSSGroupingRule.h" |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 | 35 |
| 36 class StyleRuleSupports; | 36 class StyleRuleSupports; |
| 37 | 37 |
| 38 class CSSSupportsRule final : public CSSGroupingRule { | 38 class CSSSupportsRule final : public CSSGroupingRule { |
| 39 DEFINE_WRAPPERTYPEINFO(); | 39 DEFINE_WRAPPERTYPEINFO(); |
| 40 public: | 40 public: |
| 41 static RawPtr<CSSSupportsRule> create(StyleRuleSupports* rule, CSSStyleSheet
* sheet) | 41 static CSSSupportsRule* create(StyleRuleSupports* rule, CSSStyleSheet* sheet
) |
| 42 { | 42 { |
| 43 return new CSSSupportsRule(rule, sheet); | 43 return new CSSSupportsRule(rule, sheet); |
| 44 } | 44 } |
| 45 | 45 |
| 46 ~CSSSupportsRule() override { } | 46 ~CSSSupportsRule() override { } |
| 47 | 47 |
| 48 String cssText() const override; | 48 String cssText() const override; |
| 49 | 49 |
| 50 String conditionText() const; | 50 String conditionText() const; |
| 51 | 51 |
| 52 DEFINE_INLINE_VIRTUAL_TRACE() { CSSGroupingRule::trace(visitor); } | 52 DEFINE_INLINE_VIRTUAL_TRACE() { CSSGroupingRule::trace(visitor); } |
| 53 | 53 |
| 54 private: | 54 private: |
| 55 CSSSupportsRule(StyleRuleSupports*, CSSStyleSheet*); | 55 CSSSupportsRule(StyleRuleSupports*, CSSStyleSheet*); |
| 56 | 56 |
| 57 CSSRule::Type type() const override { return SUPPORTS_RULE; } | 57 CSSRule::Type type() const override { return SUPPORTS_RULE; } |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 DEFINE_CSS_RULE_TYPE_CASTS(CSSSupportsRule, SUPPORTS_RULE); | 60 DEFINE_CSS_RULE_TYPE_CASTS(CSSSupportsRule, SUPPORTS_RULE); |
| 61 | 61 |
| 62 } // namespace blink | 62 } // namespace blink |
| 63 | 63 |
| 64 #endif // CSSSupportsRule_h | 64 #endif // CSSSupportsRule_h |
| OLD | NEW |