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

Side by Side Diff: Source/core/css/CSSSupportsRule.h

Issue 129063002: Update CSS classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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
« no previous file with comments | « Source/core/css/CSSStyleSheet.h ('k') | Source/core/css/CSSUnknownRule.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 18 matching lines...) Expand all
29 #ifndef CSSSupportsRule_h 29 #ifndef CSSSupportsRule_h
30 #define CSSSupportsRule_h 30 #define CSSSupportsRule_h
31 31
32 #include "core/css/CSSGroupingRule.h" 32 #include "core/css/CSSGroupingRule.h"
33 33
34 namespace WebCore { 34 namespace WebCore {
35 35
36 class CSSRule; 36 class CSSRule;
37 class StyleRuleSupports; 37 class StyleRuleSupports;
38 38
39 class CSSSupportsRule : public CSSGroupingRule { 39 class CSSSupportsRule FINAL : public CSSGroupingRule {
40 public: 40 public:
41 static PassRefPtr<CSSSupportsRule> create(StyleRuleSupports* rule, CSSStyleS heet* sheet) 41 static PassRefPtr<CSSSupportsRule> create(StyleRuleSupports* rule, CSSStyleS heet* sheet)
42 { 42 {
43 return adoptRef(new CSSSupportsRule(rule, sheet)); 43 return adoptRef(new CSSSupportsRule(rule, sheet));
44 } 44 }
45 45
46 virtual ~CSSSupportsRule() { } 46 virtual ~CSSSupportsRule() { }
47 47
48 virtual CSSRule::Type type() const OVERRIDE { return SUPPORTS_RULE; } 48 virtual CSSRule::Type type() const OVERRIDE { return SUPPORTS_RULE; }
49 virtual String cssText() const OVERRIDE; 49 virtual String cssText() const OVERRIDE;
50 50
51 String conditionText() const; 51 String conditionText() const;
52 52
53 private: 53 private:
54 CSSSupportsRule(StyleRuleSupports*, CSSStyleSheet*); 54 CSSSupportsRule(StyleRuleSupports*, CSSStyleSheet*);
55 }; 55 };
56 56
57 DEFINE_CSS_RULE_TYPE_CASTS(CSSSupportsRule, SUPPORTS_RULE); 57 DEFINE_CSS_RULE_TYPE_CASTS(CSSSupportsRule, SUPPORTS_RULE);
58 58
59 } // namespace WebCore 59 } // namespace WebCore
60 60
61 #endif // CSSSupportsRule_h 61 #endif // CSSSupportsRule_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSStyleSheet.h ('k') | Source/core/css/CSSUnknownRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698