Index: third_party/WebKit/Source/core/css/RuleSet.h |
diff --git a/third_party/WebKit/Source/core/css/RuleSet.h b/third_party/WebKit/Source/core/css/RuleSet.h |
index 12dd72a7629cb27211626e8eb5e9d1d909bebf87..7f74542c58d82fe697c40a3745d360ae25ee9b50 100644 |
--- a/third_party/WebKit/Source/core/css/RuleSet.h |
+++ b/third_party/WebKit/Source/core/css/RuleSet.h |
@@ -86,7 +86,7 @@ public: |
unsigned specificity() const { return m_specificity; } |
unsigned linkMatchType() const { return m_linkMatchType; } |
bool hasDocumentSecurityOrigin() const { return m_hasDocumentSecurityOrigin; } |
- PropertyWhitelistType propertyWhitelistType(bool isMatchingUARules = false) const { return isMatchingUARules ? PropertyWhitelistNone : static_cast<PropertyWhitelistType>(m_propertyWhitelistType); } |
+ PropertyWhitelistType propertyWhitelist(bool isMatchingUARules = false) const { return isMatchingUARules ? PropertyWhitelistNone : static_cast<PropertyWhitelistType>(m_propertyWhitelist); } |
// Try to balance between memory usage (there can be lots of RuleData objects) and good filtering performance. |
static const unsigned maximumIdentifierCount = 4; |
const unsigned* descendantSelectorIdentifierHashes() const { return m_descendantSelectorIdentifierHashes; } |
@@ -104,7 +104,7 @@ private: |
unsigned m_containsUncommonAttributeSelector : 1; |
unsigned m_linkMatchType : 2; // CSSSelector::LinkMatchMask |
unsigned m_hasDocumentSecurityOrigin : 1; |
- unsigned m_propertyWhitelistType : 2; |
+ unsigned m_propertyWhitelist : 2; |
// Use plain array instead of a Vector to minimize memory overhead. |
unsigned m_descendantSelectorIdentifierHashes[maximumIdentifierCount]; |
}; |