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

Unified Diff: sky/engine/core/css/StyleRule.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/StylePropertySet.cpp ('k') | sky/engine/core/css/StyleRule.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/StyleRule.h
diff --git a/sky/engine/core/css/StyleRule.h b/sky/engine/core/css/StyleRule.h
index eb992b5b749e1925c33909367f44a1a245322b8a..058c33449157488555b093a86bc393537793f1db 100644
--- a/sky/engine/core/css/StyleRule.h
+++ b/sky/engine/core/css/StyleRule.h
@@ -72,10 +72,6 @@ public:
PassRefPtr<CSSRule> createCSSOMWrapper(CSSStyleSheet* parentSheet = 0) const;
PassRefPtr<CSSRule> createCSSOMWrapper(CSSRule* parentRule) const;
- void trace(Visitor*);
- void traceAfterDispatch(Visitor*) { };
- void finalizeGarbageCollectedObject();
-
protected:
StyleRuleBase(Type type) : m_type(type) { }
StyleRuleBase(const StyleRuleBase& o) : m_type(o.m_type) { }
@@ -109,8 +105,6 @@ public:
static unsigned averageSizeInBytes();
- void traceAfterDispatch(Visitor*);
-
private:
StyleRule();
StyleRule(const StyleRule&);
@@ -132,8 +126,6 @@ public:
PassRefPtr<StyleRuleFontFace> copy() const { return adoptRef(new StyleRuleFontFace(*this)); }
- void traceAfterDispatch(Visitor*);
-
private:
StyleRuleFontFace();
StyleRuleFontFace(const StyleRuleFontFace&);
@@ -148,8 +140,6 @@ public:
void wrapperInsertRule(unsigned, PassRefPtr<StyleRuleBase>);
void wrapperRemoveRule(unsigned);
- void traceAfterDispatch(Visitor*);
-
protected:
StyleRuleGroup(Type, Vector<RefPtr<StyleRuleBase> >& adoptRule);
StyleRuleGroup(const StyleRuleGroup&);
@@ -169,8 +159,6 @@ public:
PassRefPtr<StyleRuleMedia> copy() const { return adoptRef(new StyleRuleMedia(*this)); }
- void traceAfterDispatch(Visitor*);
-
private:
StyleRuleMedia(PassRefPtr<MediaQuerySet>, Vector<RefPtr<StyleRuleBase> >& adoptRules);
StyleRuleMedia(const StyleRuleMedia&);
@@ -189,8 +177,6 @@ public:
bool conditionIsSupported() const { return m_conditionIsSupported; }
PassRefPtr<StyleRuleSupports> copy() const { return adoptRef(new StyleRuleSupports(*this)); }
- void traceAfterDispatch(Visitor* visitor) { StyleRuleGroup::traceAfterDispatch(visitor); }
-
private:
StyleRuleSupports(const String& conditionText, bool conditionIsSupported, Vector<RefPtr<StyleRuleBase> >& adoptRules);
StyleRuleSupports(const StyleRuleSupports&);
@@ -214,8 +200,6 @@ public:
PassRefPtr<StyleRuleFilter> copy() const { return adoptRef(new StyleRuleFilter(*this)); }
- void traceAfterDispatch(Visitor*);
-
private:
StyleRuleFilter(const String&);
StyleRuleFilter(const StyleRuleFilter&);
« no previous file with comments | « sky/engine/core/css/StylePropertySet.cpp ('k') | sky/engine/core/css/StyleRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698