| Index: third_party/WebKit/Source/wtf/Allocator.md
|
| diff --git a/third_party/WebKit/Source/wtf/Allocator.md b/third_party/WebKit/Source/wtf/Allocator.md
|
| index c034a8f0512bf2c8ff0a4d601ad770188401d2db..a08e00de6bdebd5a73c07422f5710376996f0def 100644
|
| --- a/third_party/WebKit/Source/wtf/Allocator.md
|
| +++ b/third_party/WebKit/Source/wtf/Allocator.md
|
| @@ -19,7 +19,7 @@ The following objects are allocated by Oilpan:
|
| * HeapVector<T>, HeapHashSet<T>, HeapHashMap<T, U> etc
|
|
|
| The implementation is in platform/heap/.
|
| -See [BlinkGCDesign.md](platform/heap/BlinkGCDesign.md) to learn the design.
|
| +See [BlinkGCDesign.md](../platform/heap/BlinkGCDesign.md) to learn the design.
|
|
|
| ### PartitionAlloc
|
|
|
| @@ -37,8 +37,9 @@ The following objects are allocated by PartitionAlloc:
|
|
|
| * Strings, Vectors, HashTables, ArrayBuffers and other primitive containers.
|
|
|
| -The implementation is in wtf/Partition*.
|
| -See [PartitionAlloc.md](wtf/PartitionAlloc.md) to learn the design.
|
| +The implementation is in /base/allocator/partition_allocator.
|
| +See [PartitionAlloc.md](/base/allocator/partition_allocator/PartitionAlloc.md)
|
| +to learn the design.
|
|
|
| ### Discardable memory
|
|
|
| @@ -73,7 +74,7 @@ you should use when allocating a new object:
|
| * Use Oilpan if you want a GC to manage the lifetime of the object.
|
| You need to make the object inherit from GarbageCollected<T> or
|
| GarbageCollectedFinalized<T>. See
|
| -[BlinkGCAPIReference.md](platform/heap/BlinkGCAPIReference.md) to learn
|
| +[BlinkGCAPIReference.md](../platform/heap/BlinkGCAPIReference.md) to learn
|
| programming with Oilpan.
|
|
|
| ```c++
|
|
|