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

Unified Diff: third_party/WebKit/Source/wtf/TypeTraits.h

Issue 1884113002: Remove RawPtr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix HeapTest.Bind expectation Created 4 years, 8 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: third_party/WebKit/Source/wtf/TypeTraits.h
diff --git a/third_party/WebKit/Source/wtf/TypeTraits.h b/third_party/WebKit/Source/wtf/TypeTraits.h
index 4b9fef359bb11e3cce67b2c97e4d1bbec389c0bb..e3c91191fe0fa1294d01edba511de1eab30e5758 100644
--- a/third_party/WebKit/Source/wtf/TypeTraits.h
+++ b/third_party/WebKit/Source/wtf/TypeTraits.h
@@ -37,8 +37,6 @@ inline const char* getStringWithTypeName()
return WTF_PRETTY_FUNCTION;
}
-template<typename T> class RawPtr;
-
template <typename T> struct IsWeak {
static const bool value = false;
};
@@ -331,11 +329,6 @@ class IsPointerToGarbageCollectedType<T*> {
public:
static const bool value = IsGarbageCollectedType<T>::value;
};
-template<typename T>
-class IsPointerToGarbageCollectedType<RawPtr<T>> {
-public:
- static const bool value = IsGarbageCollectedType<T>::value;
-};
} // namespace WTF
« no previous file with comments | « third_party/WebKit/Source/wtf/TerminatedArrayBuilder.h ('k') | third_party/WebKit/public/platform/WebPrivatePtr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698