Skip to content
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.

Commit

Permalink
[Windows] Fix build.
Browse files Browse the repository at this point in the history
Subclass was exported but not the base class. It triggers a warning
which stops the build.

Fixed upstream by CL https://codereview.chromium.org/1637273003
  • Loading branch information
darktears committed Apr 1, 2016
1 parent b15365d commit 58751e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/WebKit/Source/core/css/CSSRule.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class CSSRuleList;
class CSSStyleSheet;
class StyleRuleBase;

class CSSRule : public RefCountedWillBeGarbageCollectedFinalized<CSSRule>, public ScriptWrappable {
class CORE_EXPORT CSSRule : public RefCountedWillBeGarbageCollectedFinalized<CSSRule>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~CSSRule() { }
Expand Down

0 comments on commit 58751e9

Please sign in to comment.