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

Side by Side Diff: third_party/WebKit/Source/wtf/Allocator.md

Issue 2774333002: Revert "Move files in wtf/ to platform/wtf/" (Closed)
Patch Set: Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 # Memory management in Blink 1 # Memory management in Blink
2 2
3 This document gives a high-level overview of the memory management in Blink. 3 This document gives a high-level overview of the memory management in Blink.
4 4
5 [TOC] 5 [TOC]
6 6
7 ## Memory allocators 7 ## Memory allocators
8 8
9 Blink objects are allocated by one of the following four memory allocators. 9 Blink objects are allocated by one of the following four memory allocators.
10 10
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 void func() { 177 void func() {
178 X x; // This is allowed. 178 X x; // This is allowed.
179 X* x = new X; // This is forbidden. 179 X* x = new X; // This is forbidden.
180 } 180 }
181 ``` 181 ```
182 182
183 Note that these macros are inherited. See a comment in wtf/Allocator.h 183 Note that these macros are inherited. See a comment in wtf/Allocator.h
184 for more details about the relationship between the macros and Oilpan. 184 for more details about the relationship between the macros and Oilpan.
185 185
186 If you have any question, ask oilpan-reviews@chromium.org. 186 If you have any question, ask oilpan-reviews@chromium.org.
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/wtf/ASCIICTypeTest.cpp ('k') | third_party/WebKit/Source/wtf/AssertionsTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698