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

Unified Diff: Source/platform/heap/HeapAllocator.h

Issue 1324843003: Oilpan: Remove unused methods in HeapVector (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/HeapAllocator.h
diff --git a/Source/platform/heap/HeapAllocator.h b/Source/platform/heap/HeapAllocator.h
index b328dbdc593ca4ae56e561fbd74c8143c0252dd9..cb979bb2c9cc281d3194801b5d0dbcea9478e58f 100644
--- a/Source/platform/heap/HeapAllocator.h
+++ b/Source/platform/heap/HeapAllocator.h
@@ -370,25 +370,6 @@ public:
: Vector<T, inlineCapacity, HeapAllocator>(other)
{
}
-
- template<typename U>
- void append(const U* data, size_t dataSize)
- {
- Vector<T, inlineCapacity, HeapAllocator>::append(data, dataSize);
- }
-
- template<typename U>
- void append(const U& other)
- {
- Vector<T, inlineCapacity, HeapAllocator>::append(other);
- }
-
- template<typename U, size_t otherCapacity>
- void appendVector(const HeapVector<U, otherCapacity>& other)
- {
- const Vector<U, otherCapacity, HeapAllocator>& otherVector = other;
- Vector<T, inlineCapacity, HeapAllocator>::appendVector(otherVector);
- }
};
template<typename T, size_t inlineCapacity = 0>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698