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

Unified Diff: sky/engine/core/css/CSSPropertySourceData.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/CSSProperty.h ('k') | sky/engine/core/css/CSSPropertySourceData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/CSSPropertySourceData.h
diff --git a/sky/engine/core/css/CSSPropertySourceData.h b/sky/engine/core/css/CSSPropertySourceData.h
index 9e8ad5e844fc6d9d25d5e20c89864d370b2cf50f..6866dc05689b30bd8f3857be65cefbc7eeb521e9 100644
--- a/sky/engine/core/css/CSSPropertySourceData.h
+++ b/sky/engine/core/css/CSSPropertySourceData.h
@@ -48,8 +48,6 @@ public:
SourceRange(unsigned start, unsigned end);
unsigned length() const;
- void trace(Visitor*) { }
-
unsigned start;
unsigned end;
};
@@ -64,8 +62,6 @@ public:
String toString() const;
unsigned hash() const;
- void trace(Visitor* visitor) { visitor->trace(range); }
-
String name;
String value;
bool important;
@@ -80,8 +76,6 @@ struct CSSStyleSourceData : public RefCounted<CSSStyleSourceData> {
return adoptRef(new CSSStyleSourceData());
}
- void trace(Visitor* visitor) { visitor->trace(propertyData); }
-
Vector<CSSPropertySourceData> propertyData;
};
@@ -117,8 +111,6 @@ struct CSSRuleSourceData : public RefCounted<CSSRuleSourceData> {
styleSourceData = CSSStyleSourceData::create();
}
- void trace(Visitor*);
-
Type type;
// Range of the selector list in the enclosing source.
« no previous file with comments | « sky/engine/core/css/CSSProperty.h ('k') | sky/engine/core/css/CSSPropertySourceData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698