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

Unified Diff: third_party/WebKit/Source/platform/heap/BlinkGCDesign.md

Issue 1754183002: Rename BaseHeap to BaseArena (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « third_party/WebKit/Source/platform/heap/BlinkGC.h ('k') | third_party/WebKit/Source/platform/heap/Heap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/heap/BlinkGCDesign.md
diff --git a/third_party/WebKit/Source/platform/heap/BlinkGCDesign.md b/third_party/WebKit/Source/platform/heap/BlinkGCDesign.md
index b43df56b4c7e9ed766d832055a28f7653fc8caea..5c1da77d16213f2b03e21bc3c3b8a038b7dd7804 100644
--- a/third_party/WebKit/Source/platform/heap/BlinkGCDesign.md
+++ b/third_party/WebKit/Source/platform/heap/BlinkGCDesign.md
@@ -192,9 +192,9 @@ Each thread has its dedicated heap so that the thread can allocate an object
without acquiring a lock. For example, an object allocated on thread 1 goes
to a different heap than an object allocated on thread 2.
-In addition, each thread provides multiple heaps to group objects by their type
+In addition, each thread provides multiple arenas to group objects by their type
and thus improves locality.
For example, a Node object allocated on thread 1 goes to a different heap than
a CSSValue object allocated on thread 1. (See BlinkGC.h to get the list of
-the typed heaps.)
+the typed arenas.)
« no previous file with comments | « third_party/WebKit/Source/platform/heap/BlinkGC.h ('k') | third_party/WebKit/Source/platform/heap/Heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698