Commit 26592296 authored by hjd's avatar hjd Committed by Commit bot

Fix links in Source/wtf/Allocator.md

BUG=chromium:663353

Review-Url: https://codereview.chromium.org/2488933002
Cr-Commit-Position: refs/heads/master@{#443209}
parent a21137ae
...@@ -19,7 +19,7 @@ The following objects are allocated by Oilpan: ...@@ -19,7 +19,7 @@ The following objects are allocated by Oilpan:
* HeapVector<T>, HeapHashSet<T>, HeapHashMap<T, U> etc * HeapVector<T>, HeapHashSet<T>, HeapHashMap<T, U> etc
The implementation is in platform/heap/. 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 ### PartitionAlloc
...@@ -37,8 +37,9 @@ The following objects are allocated by PartitionAlloc: ...@@ -37,8 +37,9 @@ The following objects are allocated by PartitionAlloc:
* Strings, Vectors, HashTables, ArrayBuffers and other primitive containers. * Strings, Vectors, HashTables, ArrayBuffers and other primitive containers.
The implementation is in wtf/Partition*. The implementation is in /base/allocator/partition_allocator.
See [PartitionAlloc.md](wtf/PartitionAlloc.md) to learn the design. See [PartitionAlloc.md](/base/allocator/partition_allocator/PartitionAlloc.md)
to learn the design.
### Discardable memory ### Discardable memory
...@@ -73,7 +74,7 @@ you should use when allocating a new object: ...@@ -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. * 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 You need to make the object inherit from GarbageCollected<T> or
GarbageCollectedFinalized<T>. See GarbageCollectedFinalized<T>. See
[BlinkGCAPIReference.md](platform/heap/BlinkGCAPIReference.md) to learn [BlinkGCAPIReference.md](../platform/heap/BlinkGCAPIReference.md) to learn
programming with Oilpan. programming with Oilpan.
```c++ ```c++
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment