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

Unified Diff: Source/wtf/TypeTraits.h

Issue 267323004: Oilpan: Move ThreadableWebSocketChannelClientWrapper to Oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 months 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
Index: Source/wtf/TypeTraits.h
diff --git a/Source/wtf/TypeTraits.h b/Source/wtf/TypeTraits.h
index 6bccc46e5314f0f2753e621671c9cd02b28c0974..7534003daa2d595f98e3f3e727025b163a18d3eb 100644
--- a/Source/wtf/TypeTraits.h
+++ b/Source/wtf/TypeTraits.h
@@ -224,6 +224,14 @@ namespace WTF {
typedef T Type;
};
+ template <typename T, template <class V, class W> class OuterTemplate> struct RemoveTemplate2 {
+ typedef T Type;
+ };
+
+ template <typename T, template <class V, class W> class OuterTemplate> struct RemoveTemplate2<OuterTemplate<T, T>, OuterTemplate> {
+ typedef T Type;
+ };
+
template <typename T> struct RemoveConst {
typedef T Type;
};
« Source/platform/CrossThreadCopier.h ('K') | « Source/platform/CrossThreadCopier.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698