Index: third_party/WebKit/Source/core/css/CSSPropertySourceData.h |
diff --git a/third_party/WebKit/Source/core/css/CSSPropertySourceData.h b/third_party/WebKit/Source/core/css/CSSPropertySourceData.h |
index 3817beb57cab5a59406e8e872754f916417f8890..50440f8774f206765149be2a9165212db8f47921 100644 |
--- a/third_party/WebKit/Source/core/css/CSSPropertySourceData.h |
+++ b/third_party/WebKit/Source/core/css/CSSPropertySourceData.h |
@@ -133,12 +133,12 @@ using RuleSourceDataList = WillBeHeapVector<RefPtrWillBeMember<CSSRuleSourceData |
using SelectorRangeList = WillBeHeapVector<SourceRange>; |
struct CSSRuleSourceData : public RefCountedWillBeGarbageCollected<CSSRuleSourceData> { |
- static PassRefPtrWillBeRawPtr<CSSRuleSourceData> create(StyleRule::Type type) |
+ static PassRefPtrWillBeRawPtr<CSSRuleSourceData> create(StyleRule::RuleType type) |
{ |
return adoptRefWillBeNoop(new CSSRuleSourceData(type)); |
} |
- CSSRuleSourceData(StyleRule::Type type) |
+ CSSRuleSourceData(StyleRule::RuleType type) |
: type(type) |
{ |
if (type == StyleRule::Style || type == StyleRule::FontFace || type == StyleRule::Page || type == StyleRule::Keyframe) |
@@ -149,7 +149,7 @@ struct CSSRuleSourceData : public RefCountedWillBeGarbageCollected<CSSRuleSource |
DECLARE_TRACE(); |
- StyleRule::Type type; |
+ StyleRule::RuleType type; |
// Range of the selector list in the enclosing source. |
SourceRange ruleHeaderRange; |