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

Unified Diff: sky/engine/wtf/HashCountedSet.h

Issue 729733002: Remove more bits of the Oilpan tracing system (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/wtf/Deque.h ('k') | sky/engine/wtf/HashMap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/wtf/HashCountedSet.h
diff --git a/sky/engine/wtf/HashCountedSet.h b/sky/engine/wtf/HashCountedSet.h
index 79b3fefadc90a2d25c96961989b65a7dd3d5964e..1b6456bec5c6ae3b1a36d8bcddad815423eaef3e 100644
--- a/sky/engine/wtf/HashCountedSet.h
+++ b/sky/engine/wtf/HashCountedSet.h
@@ -80,8 +80,6 @@ namespace WTF {
// Clears the whole set.
void clear() { m_impl.clear(); }
- void trace(typename Allocator::Visitor* visitor) { m_impl.trace(visitor); }
-
private:
ImplType m_impl;
};
@@ -147,13 +145,6 @@ namespace WTF {
vector[i] = (*it).key;
}
-#if !ENABLE(OILPAN)
- template<typename T, typename U, typename V>
- struct NeedsTracing<HashCountedSet<T, U, V> > {
- static const bool value = false;
- };
-#endif
-
} // namespace WTF
using WTF::HashCountedSet;
« no previous file with comments | « sky/engine/wtf/Deque.h ('k') | sky/engine/wtf/HashMap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698