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

Unified Diff: third_party/WebKit/Source/platform/heap/Handle.h

Issue 1418823002: Oilpan: fix build after r355274. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | « third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/heap/Handle.h
diff --git a/third_party/WebKit/Source/platform/heap/Handle.h b/third_party/WebKit/Source/platform/heap/Handle.h
index d087caaa99d45ffcf8cc31998046fe913bd0846e..f8bb60f77477339e150fa20f0ccf977f1a182acd 100644
--- a/third_party/WebKit/Source/platform/heap/Handle.h
+++ b/third_party/WebKit/Source/platform/heap/Handle.h
@@ -628,6 +628,11 @@ class PersistentHeapVector : public PersistentHeapCollectionBase<HeapVector<T, i
public:
PersistentHeapVector() { }
+ explicit PersistentHeapVector(size_t size)
+ : PersistentHeapCollectionBase<HeapVector<T, inlineCapacity>>(size)
+ {
+ }
+
template<size_t otherCapacity>
PersistentHeapVector(const HeapVector<T, otherCapacity>& other)
: PersistentHeapCollectionBase<HeapVector<T, inlineCapacity>>(other)
« no previous file with comments | « third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698