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

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

Issue 2600123002: Initialize member array field. (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/RuleSet.cpp
diff --git a/third_party/WebKit/Source/core/css/RuleSet.cpp b/third_party/WebKit/Source/core/css/RuleSet.cpp
index bf5ffe0d80110b34e23a9a8cee280fa1eeada4dd..5ad310f6ac30424484b17c5e82a41a9adffcb1d6 100644
--- a/third_party/WebKit/Source/core/css/RuleSet.cpp
+++ b/third_party/WebKit/Source/core/css/RuleSet.cpp
@@ -129,7 +129,8 @@ RuleData::RuleData(StyleRule* rule,
m_linkMatchType(selector().computeLinkMatchType()),
m_hasDocumentSecurityOrigin(addRuleFlags & RuleHasDocumentSecurityOrigin),
m_propertyWhitelist(
- determinePropertyWhitelistType(addRuleFlags, selector())) {
+ determinePropertyWhitelistType(addRuleFlags, selector())),
+ m_descendantSelectorIdentifierHashes() {
SelectorFilter::collectIdentifierHashes(
selector(), m_descendantSelectorIdentifierHashes, maximumIdentifierCount);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698