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

Unified Diff: Source/heap/Handle.h

Issue 181093003: Fix error introduced in r167687 and add copy constructor to PersistentHeapVector. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: WillBe prefix Created 6 years, 10 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 | « Source/core/speech/SpeechInputResult.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/heap/Handle.h
diff --git a/Source/heap/Handle.h b/Source/heap/Handle.h
index 0387ba9eceae8051031d5c773b3071731bc1dfcd..89a15d7743d60add55f5e2c05bb9d0f88a68c635 100644
--- a/Source/heap/Handle.h
+++ b/Source/heap/Handle.h
@@ -314,6 +314,11 @@ class PersistentHeapCollectionBase
// Never allocate these objects with new. Use Persistent<Collection> instead.
DISALLOW_ALLOCATION();
public:
+ PersistentHeapCollectionBase() { }
+
+ template<typename OtherCollection>
+ PersistentHeapCollectionBase(const OtherCollection& other) : Collection(other) { }
+
void trace(Visitor* visitor) { visitor->trace(*static_cast<Collection*>(this)); }
};
@@ -332,7 +337,16 @@ template<
class PersistentHeapHashSet : public PersistentHeapCollectionBase<HeapHashSet<ValueArg, HashArg, TraitsArg> > { };
template<typename T, size_t inlineCapacity = 0>
-class PersistentHeapVector : public PersistentHeapCollectionBase<HeapVector<T, inlineCapacity> > { };
+class PersistentHeapVector : public PersistentHeapCollectionBase<HeapVector<T, inlineCapacity> > {
+public:
+ PersistentHeapVector() { }
+
+ template<size_t otherCapacity>
+ PersistentHeapVector(const HeapVector<T, otherCapacity>& other)
+ : PersistentHeapCollectionBase<HeapVector<T, inlineCapacity> >(other)
+ {
+ }
+};
// Members are used in classes to contain strong pointers to other oilpan heap
// allocated objects.
« no previous file with comments | « Source/core/speech/SpeechInputResult.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698