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

Side by Side Diff: base/trace_event/memory_infra_background_whitelist.cc

Issue 2682943002: Create a dedicated partition for array buffers (Closed)
Patch Set: temp Created 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/wtf/allocator/Partitions.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/trace_event/memory_infra_background_whitelist.h" 5 #include "base/trace_event/memory_infra_background_whitelist.h"
6 6
7 #include <ctype.h> 7 #include <ctype.h>
8 #include <string.h> 8 #include <string.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "malloc/allocated_objects", 61 "malloc/allocated_objects",
62 "malloc/metadata_fragmentation_caches", 62 "malloc/metadata_fragmentation_caches",
63 "web_cache/Image_resources", 63 "web_cache/Image_resources",
64 "web_cache/CSS stylesheet_resources", 64 "web_cache/CSS stylesheet_resources",
65 "web_cache/Script_resources", 65 "web_cache/Script_resources",
66 "web_cache/XSL stylesheet_resources", 66 "web_cache/XSL stylesheet_resources",
67 "web_cache/Font_resources", 67 "web_cache/Font_resources",
68 "web_cache/Other_resources", 68 "web_cache/Other_resources",
69 "partition_alloc/allocated_objects", 69 "partition_alloc/allocated_objects",
70 "partition_alloc/partitions", 70 "partition_alloc/partitions",
71 "partition_alloc/partitions/array_buffer",
71 "partition_alloc/partitions/buffer", 72 "partition_alloc/partitions/buffer",
72 "partition_alloc/partitions/fast_malloc", 73 "partition_alloc/partitions/fast_malloc",
73 "partition_alloc/partitions/layout", 74 "partition_alloc/partitions/layout",
74 "skia/sk_glyph_cache", 75 "skia/sk_glyph_cache",
75 "skia/sk_resource_cache", 76 "skia/sk_resource_cache",
76 "sqlite", 77 "sqlite",
77 "ui/resource_manager_0x?", 78 "ui/resource_manager_0x?",
78 "v8/isolate_0x?/heap_spaces", 79 "v8/isolate_0x?/heap_spaces",
79 "v8/isolate_0x?/heap_spaces/code_space", 80 "v8/isolate_0x?/heap_spaces/code_space",
80 "v8/isolate_0x?/heap_spaces/large_object_space", 81 "v8/isolate_0x?/heap_spaces/large_object_space",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 void SetDumpProviderWhitelistForTesting(const char* const* list) { 173 void SetDumpProviderWhitelistForTesting(const char* const* list) {
173 g_dump_provider_whitelist = list; 174 g_dump_provider_whitelist = list;
174 } 175 }
175 176
176 void SetAllocatorDumpNameWhitelistForTesting(const char* const* list) { 177 void SetAllocatorDumpNameWhitelistForTesting(const char* const* list) {
177 g_allocator_dump_name_whitelist = list; 178 g_allocator_dump_name_whitelist = list;
178 } 179 }
179 180
180 } // namespace trace_event 181 } // namespace trace_event
181 } // namespace base 182 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/wtf/allocator/Partitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698