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

Unified Diff: sky/engine/core/css/CSSRuleList.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/CSSRule.cpp ('k') | sky/engine/core/css/CSSRuleList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/CSSRuleList.h
diff --git a/sky/engine/core/css/CSSRuleList.h b/sky/engine/core/css/CSSRuleList.h
index e5da780f6f14a15e81fe23b2f346bcad66c6f3ff..4c3031f8e66034781c5a8150208a90bd516bed3b 100644
--- a/sky/engine/core/css/CSSRuleList.h
+++ b/sky/engine/core/css/CSSRuleList.h
@@ -50,8 +50,6 @@ public:
virtual CSSStyleSheet* styleSheet() const = 0;
- virtual void trace(Visitor*) { }
-
protected:
CSSRuleList();
};
@@ -72,8 +70,6 @@ public:
virtual CSSStyleSheet* styleSheet() const override { return 0; }
- virtual void trace(Visitor*) override;
-
private:
StaticCSSRuleList();
virtual ~StaticCSSRuleList();
@@ -100,12 +96,6 @@ public:
virtual void deref() override { m_rule->deref(); }
#endif
- virtual void trace(Visitor* visitor) override
- {
- visitor->trace(m_rule);
- CSSRuleList::trace(visitor);
- }
-
private:
LiveCSSRuleList(Rule* rule) : m_rule(rule) { }
« no previous file with comments | « sky/engine/core/css/CSSRule.cpp ('k') | sky/engine/core/css/CSSRuleList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698