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

Unified Diff: third_party/WebKit/Source/wtf/Allocator.md

Issue 2488933002: Fix links in Source/wtf/Allocator.md (Closed)
Patch Set: rebase Created 3 years, 11 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: 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++
« 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