| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CSSConditionRule_h |
| 6 #define CSSConditionRule_h |
| 7 |
| 8 #include "core/css/CSSGroupingRule.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 class CSSConditionRule : public CSSGroupingRule { |
| 13 DEFINE_WRAPPERTYPEINFO(); |
| 14 |
| 15 public: |
| 16 ~CSSConditionRule() override; |
| 17 |
| 18 virtual String conditionText() const; |
| 19 |
| 20 protected: |
| 21 CSSConditionRule(StyleRuleCondition* conditionRule, CSSStyleSheet* parent); |
| 22 }; |
| 23 |
| 24 } // namespace blink |
| 25 |
| 26 #endif // CSSConditionRule_h |
| OLD | NEW |