Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Unified Diff: third_party/WebKit/Source/core/css/CSSGlobalRuleSet.cpp

Issue 2469143002: Make siblingRules and uncommonAttributeRules private. (Closed)
Patch Set: Compile fixes Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/CSSGlobalRuleSet.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSGlobalRuleSet.cpp b/third_party/WebKit/Source/core/css/CSSGlobalRuleSet.cpp
index 5e596a95f20ab7d8b3ba1500e9c564bd55dd4af2..df122f876f9ab97781a4a6bd1b11ea2bd837fb08 100644
--- a/third_party/WebKit/Source/core/css/CSSGlobalRuleSet.cpp
+++ b/third_party/WebKit/Source/core/css/CSSGlobalRuleSet.cpp
@@ -65,8 +65,8 @@ void CSSGlobalRuleSet::update(Document& document) {
document.styleEngine().collectScopedStyleFeaturesTo(m_features);
- m_siblingRuleSet = makeRuleSet(m_features.siblingRules);
- m_uncommonAttributeRuleSet = makeRuleSet(m_features.uncommonAttributeRules);
+ m_siblingRuleSet = makeRuleSet(m_features.siblingRules());
+ m_uncommonAttributeRuleSet = makeRuleSet(m_features.uncommonAttributeRules());
}
DEFINE_TRACE(CSSGlobalRuleSet) {
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp ('k') | third_party/WebKit/Source/core/css/RuleFeature.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698