| Index: third_party/WebKit/Source/core/css/CSSImportRule.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSImportRule.h b/third_party/WebKit/Source/core/css/CSSImportRule.h
|
| index 0796dc82fbc8e464d85b4c580b08a024cbb71a19..0846fbcbd5a81725b48affaa1a444cea6a26693c 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSImportRule.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSImportRule.h
|
| @@ -52,14 +52,14 @@ public:
|
| private:
|
| CSSImportRule(StyleRuleImport*, CSSStyleSheet*);
|
|
|
| - CSSRule::Type type() const override { return IMPORT_RULE; }
|
| + CSSRule::Type type() const override { return kImportRule; }
|
|
|
| Member<StyleRuleImport> m_importRule;
|
| mutable Member<MediaList> m_mediaCSSOMWrapper;
|
| mutable Member<CSSStyleSheet> m_styleSheetCSSOMWrapper;
|
| };
|
|
|
| -DEFINE_CSS_RULE_TYPE_CASTS(CSSImportRule, IMPORT_RULE);
|
| +DEFINE_CSS_RULE_TYPE_CASTS(CSSImportRule, kImportRule);
|
|
|
| } // namespace blink
|
|
|
|
|