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

Unified Diff: third_party/WebKit/Source/core/css/RuleFeatureSetTest.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/RuleFeatureSetTest.cpp
diff --git a/third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp b/third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp
index 19a83baf73586aa17c54b268d63e27fe1b6037fb..a4c96e8c8c0c420a5554cf3ddc847416e82b635f 100644
--- a/third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp
+++ b/third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp
@@ -255,11 +255,11 @@ class RuleFeatureSetTest : public ::testing::Test {
}
void expectSiblingRuleCount(unsigned count) {
- EXPECT_EQ(count, m_ruleFeatureSet->siblingRules.size());
+ EXPECT_EQ(count, m_ruleFeatureSet->siblingRules().size());
}
void expectUncommonAttributeRuleCount(unsigned count) {
- EXPECT_EQ(count, m_ruleFeatureSet->uncommonAttributeRules.size());
+ EXPECT_EQ(count, m_ruleFeatureSet->uncommonAttributeRules().size());
}
void expectFullRecalcForRuleSetInvalidation(bool expected) {

Powered by Google App Engine
This is Rietveld 408576698