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

Unified Diff: Source/core/css/ElementRuleCollector.h

Issue 1312073003: Oilpan: fix build after r201639. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: revert MatchedRule::RuleData change Created 5 years, 3 months 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: Source/core/css/ElementRuleCollector.h
diff --git a/Source/core/css/ElementRuleCollector.h b/Source/core/css/ElementRuleCollector.h
index d8bc12f71eed55c9b8d611bed6a15d0db96086c6..67b44a7a65a370dd638b3fddce64da47567f496f 100644
--- a/Source/core/css/ElementRuleCollector.h
+++ b/Source/core/css/ElementRuleCollector.h
@@ -62,7 +62,11 @@ public:
}
private:
- RawPtrWillBeMember<const RuleData> m_ruleData;
+ // FIXME: Oilpan: RuleData is in the oilpan heap and this pointer
+ // really should be traced. However, RuleData objects are
+ // allocated inside larger TerminatedArray objects and we cannot
+ // trace a raw rule data pointer at this point.
+ const RuleData* m_ruleData;
unsigned m_specificity;
uint64_t m_position;
RawPtrWillBeMember<const CSSStyleSheet> m_parentStyleSheet;
« 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