| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |