Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: third_party/WebKit/Source/core/css/CSSConditionRule.h

Issue 2416893002: CSSMediaRule and CSSSupportsRule inherit from CSSConditionRule (Closed)
Patch Set: Fix tracing Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/BUILD.gn ('k') | third_party/WebKit/Source/core/css/CSSConditionRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698