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

Unified Diff: sky/engine/core/css/ElementRuleCollector.h

Issue 723253004: Remove tons of OILPAN. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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
« no previous file with comments | « sky/engine/core/css/DOMWindowCSS.h ('k') | sky/engine/core/css/FontFaceCache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/ElementRuleCollector.h
diff --git a/sky/engine/core/css/ElementRuleCollector.h b/sky/engine/core/css/ElementRuleCollector.h
index 87bf72f5adddf51a85e83a99972ef621c3e650d9..50f75cfacf4c77fae8d77ff17d4f08dbd183f784 100644
--- a/sky/engine/core/css/ElementRuleCollector.h
+++ b/sky/engine/core/css/ElementRuleCollector.h
@@ -62,10 +62,6 @@ public:
uint32_t cascadeScope() const { return m_cascadeScope; }
uint64_t position() const { return m_position; }
const CSSStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; }
- void trace(Visitor* visitor)
- {
- visitor->trace(m_parentStyleSheet);
- }
private:
// FIXME: Oilpan: RuleData is in the oilpan heap and this pointer
@@ -89,13 +85,6 @@ class StyleRuleList final : public RefCounted<StyleRuleList> {
public:
static PassRefPtr<StyleRuleList> create() { return adoptRef(new StyleRuleList()); }
- void trace(Visitor* visitor)
- {
-#if ENABLE(OILPAN)
- visitor->trace(m_list);
-#endif
- }
-
Vector<RawPtr<StyleRule> > m_list;
};
« no previous file with comments | « sky/engine/core/css/DOMWindowCSS.h ('k') | sky/engine/core/css/FontFaceCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698