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

Unified Diff: src/zone/accounting-allocator.h

Issue 2895473003: [heap] Simplify and scale ResourceConstraints::ConfigureDefaults. (Closed)
Patch Set: rename Created 3 years, 7 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 | « src/heap/heap.h ('k') | test/unittests/heap/heap-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/zone/accounting-allocator.h
diff --git a/src/zone/accounting-allocator.h b/src/zone/accounting-allocator.h
index 65128c6f7052aaeb2af51201b1efb3a0936210c8..53d30b38269972bcea75e0b22882b875324f490f 100644
--- a/src/zone/accounting-allocator.h
+++ b/src/zone/accounting-allocator.h
@@ -20,10 +20,7 @@ namespace internal {
class V8_EXPORT_PRIVATE AccountingAllocator {
public:
- static const size_t kMaxPoolSizeLowMemoryDevice = 8ul * KB;
- static const size_t kMaxPoolSizeMediumMemoryDevice = 8ul * KB;
- static const size_t kMaxPoolSizeHighMemoryDevice = 8ul * KB;
- static const size_t kMaxPoolSizeHugeMemoryDevice = 8ul * KB;
+ static const size_t kMaxPoolSize = 8ul * KB;
AccountingAllocator();
virtual ~AccountingAllocator();
« no previous file with comments | « src/heap/heap.h ('k') | test/unittests/heap/heap-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698