From 58751e93e049ef0a7778d40780ea3b2a9ddc8713 Mon Sep 17 00:00:00 2001 From: Alexis Menard Date: Fri, 1 Apr 2016 09:51:11 -0700 Subject: [PATCH] [Windows] Fix build. 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 --- third_party/WebKit/Source/core/css/CSSRule.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/WebKit/Source/core/css/CSSRule.h b/third_party/WebKit/Source/core/css/CSSRule.h index 83808d4001a16..e5b85e9d4f4a1 100644 --- a/third_party/WebKit/Source/core/css/CSSRule.h +++ b/third_party/WebKit/Source/core/css/CSSRule.h @@ -35,7 +35,7 @@ class CSSRuleList; class CSSStyleSheet; class StyleRuleBase; -class CSSRule : public RefCountedWillBeGarbageCollectedFinalized, public ScriptWrappable { +class CORE_EXPORT CSSRule : public RefCountedWillBeGarbageCollectedFinalized, public ScriptWrappable { DEFINE_WRAPPERTYPEINFO(); public: virtual ~CSSRule() { }